export declare const useTranslation: () => {
    t: (key: string, defaultValue?: string, variables?: Record<string, any>) => string;
    locale: string;
    setLocale: (locale: string) => void;
    isLoading: boolean;
    availableLocales: string[];
};
