import { Theme, CreateThemeConfig } from './theme.types'; export declare function getChosenTheme({ a11yColors, darkColors, tokensTheme, theme, }: { a11yColors?: boolean; darkColors?: boolean; tokensTheme?: 'light' | 'dark' | 'a11y'; theme?: 'light' | 'dark' | 'a11y'; }): "light" | "dark" | "a11y"; export declare const createTheme: (config?: CreateThemeConfig) => Theme;