import { NeutralColors, PrimaryColors } from "../styles/customTheme.mjs";
import { CSSProperties } from "react";
import { CustomStylishParams, CustomTokenParams, ThemeProviderProps } from "antd-style";

//#region src/ThemeProvider/type.d.ts
interface ThemeProviderProps$1 extends ThemeProviderProps<any> {
  className?: string;
  customFonts?: string[];
  customStylish?: (theme: CustomStylishParams) => {
    [key: string]: any;
  };
  customTheme?: {
    neutralColor?: NeutralColors;
    primaryColor?: PrimaryColors;
  };
  customToken?: (theme: CustomTokenParams) => {
    [key: string]: any;
  };
  enableCustomFonts?: boolean;
  enableGlobalStyle?: boolean;
  style?: CSSProperties;
}
interface MetaProps {
  description?: string;
  title?: string;
  withManifest?: boolean;
}
//#endregion
export { MetaProps, ThemeProviderProps$1 as ThemeProviderProps };
//# sourceMappingURL=type.d.mts.map