@ant-design/pro-layout
Version:
12 lines (11 loc) • 458 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>>) => JSX.Element;
hashId: string;
};