import React from 'react'; export declare const defaultTheme: ThemeConfig; export declare const BridgesThemeProvider: ({ enableDarkMode, primaryColor, primaryColorDark, secondaryColor, secondaryColorDark, primaryTextColor, primaryTextColorDark, secondaryTextColorDark, secondaryTextColor, fontFamily, borderRadius, fontSize, backgroundColor, cardBackgroundColor, backgroundColorDark, cardBackgroundColorDark, children, }: ThemeConfig) => JSX.Element; export type ThemeConfig = React.PropsWithChildren<{ /** * Primary color */ primaryColor?: string; primaryColorDark?: string; /** * Secondary color */ secondaryColor?: string; secondaryColorDark?: string; /** * Primary color for text */ primaryTextColor?: string; primaryTextColorDark?: string; /** * Secondary color for text */ secondaryTextColor?: string; secondaryTextColorDark?: string; /** * Background color */ backgroundColor?: string; backgroundColorDark?: string; /** * Card background color */ cardBackgroundColor?: string; cardBackgroundColorDark?: string; /** * Border radius * @default 16 */ borderRadius?: string | number; /** * Font size * @default 14 * */ fontSize?: string | number; /** * Font family * @default "Roboto, Helvetica, Arial, sans-serif" */ fontFamily?: string; /** * Whether to use dark mode or not */ enableDarkMode?: boolean; }>; //# sourceMappingURL=BridgesThemeProvider.d.ts.map