import { DynamicCopyElement } from '../types'; export declare const LOCALES: { EN_US: string; EN_CA: string; FR: string; FR_CA: string; ES: string; }; export declare const VALID_LOCALES: string[]; export declare const getLocale: () => any; export declare const buildDynamicCopy: (str: string, ...args: DynamicCopyElement[]) => string | DynamicCopyElement[]; export declare const buildPluralCopy: (strOne: string, strMulti: string, count: number, ...args: DynamicCopyElement[]) => string | DynamicCopyElement[];