import { Store } from '.';
interface I18nOptions {
    params?: Record<string, any>;
}
export declare class I18nStore {
    store: Store;
    constructor(store: Store);
    t(key: string, opts?: I18nOptions): string;
    tScoped(prefix: string): (key: string, opts?: I18nOptions) => string;
}
export declare const useI18nStore: () => I18nStore;
export {};
