import { CurrentTheme } from '../types/shared';
export interface GetThemeOptions {
    variant?: 'light' | 'dark';
    locale?: string;
    direction?: 'ltr' | 'rtl';
}
/** @deprecated */
export declare function getTheme({ variant, locale, direction, }?: GetThemeOptions): CurrentTheme;
