export interface Translatable { /** Translation Key */ key: string; /** Translation Replacements */ repl?: Record; /** String to use if key doesn't exist */ backup?: string; } /** Helper Type; Used to signify something might be translated or just a string */ export declare type PossiblyTranslatable = string | Translatable;