/**
 * Get the decimal and thousand separator of a locale
 * @param locale
 * @returns {decimal: string, thousand: string}
 */
export declare function getSeparator(locale?: string): {
    thousand: string;
    decimal: string;
};
