import React from 'react'; import { KubedTheme } from '../theme'; import { Locale, ILocale } from './LocaleProvider/types'; export type { Locale, ILocale }; export interface Props { children: React.ReactNode; themes?: Array; themeType?: string | 'dark' | 'light'; locale?: Locale; extendLocales?: Record; } export declare function KubedConfigProvider({ children, themes, themeType, locale, extendLocales, }: Props): React.JSX.Element; export declare namespace KubedConfigProvider { var displayName: string; } //# sourceMappingURL=index.d.ts.map