/// import type { GenerateStyle, ProAliasToken } from '@ant-design/pro-provider'; export interface stylishToken extends ProAliasToken { componentCls: string; proLayoutCollapsedWidth: number; } export declare function useStylish(prefixCls: string, { stylish, proLayoutCollapsedWidth, }: { stylish?: GenerateStyle; proLayoutCollapsedWidth: number; }): { wrapSSR: (node: import("react").ReactElement>) => import("react").JSX.Element; hashId: string; };