export type Message = {
    [key: string]: string;
};
type Text = Record<string, Message>;
type Texts = Record<string, Text>;
declare const _default: {
    text(): Text;
    use(newLang: string, newConfigs: Text): void;
    add(newConfigs?: Texts): void;
};
export default _default;
