///
import { ThemeProviderProps as AntdThemeProviderProps, CustomStylishParams, CustomTokenParams } from 'antd-style';
import { NeutralColors, PrimaryColors } from "../styles";
export interface ThemeProviderProps extends Omit, 'theme'> {
customStylish?: (theme: CustomStylishParams) => {
[key: string]: any;
};
customTheme?: {
neutralColor?: NeutralColors;
primaryColor?: PrimaryColors;
};
/**
* @description Custom extra token
*/
customToken?: (theme: CustomTokenParams) => {
[key: string]: any;
};
enableWebfonts?: boolean;
/**
* @description Webfont loader css strings
*/
webfonts?: string[];
}
declare const ThemeProvider: import("react").NamedExoticComponent;
export default ThemeProvider;