@ant-design/pro-layout
Version:
12 lines (11 loc) • 474 B
TypeScript
/// <reference types="react" />
import type { GenerateStyle, ProAliasToken } from '@ant-design/pro-provider';
export interface stylishToken extends ProAliasToken {
componentCls: string;
}
export declare function useStylish(prefixCls: string, { stylish, }: {
stylish?: GenerateStyle<stylishToken>;
}): {
wrapSSR: (node: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) => import("react").JSX.Element;
hashId: string;
};