import ITranslation from '../Interfaces/Translation'; export default interface ILang { readonly [key: string]: string; readonly fr: string; readonly en: string; } export declare const splitKeywordsForTranslationDictionary: (dictionary: ITranslation[]) => string[] | ITranslation[]; export declare const getNumberFromString: (value: string, defaultNotNull?: boolean) => number; export declare const stripAccents: (value: string) => string; export declare const stripHTML: (originalString: string, keepBR?: boolean) => string; export declare const startsWithVowel: (str: string) => boolean; export declare const extractEquivalent: (value: string, compareToValues: string[]) => string; export declare const string_to_slug: (str: string) => string; export declare const convertToNumber: (value: string | number) => number; export declare const getStateCodeFromString: (stateString: string) => "BC" | "NB" | "Ns" | "AB" | "NT" | "NL" | "MB" | "SK" | "YT" | "NU" | "PE" | "ON" | "QC"; export declare const splitFromFirstChar: (char: string, str: string) => string[];