declare type ILanguage = Record; declare type ILanguageKeys = 'eng' | 'rus'; declare type InputItem = { day: string; month: string; year: string; }; declare type IService = Record; declare type IServiceKeys = 'jenesei_id'; export declare const LIBRARY_VERSION: any; export declare const LIST_IMAGE_SUPPORTED_FORMAT: readonly ["image/jpeg", "image/jpg", "image/png", "image/webp", "image/avif"]; export declare const LIST_IMAGE_SUPPORTED_FORMAT_FOR_INPUT: string; export declare const LIST_KEY_LANGUAGE: { [key: string]: string; }; export declare const LIST_KEY_SERVICE: { [key: string]: string; }; export declare const LIST_LANGUAGE: { value: ILanguageKeys; label: string; placeholder: string; search: string; }[]; export declare const LIST_SERVICE: { value: IServiceKeys; label: string; placeholder: string; search: string; }[]; export declare const LOCALE_INPUT: InputItem; export declare const LOCALE_MONTHS: MonthItem[]; export declare const LOCALE_WEEKS: WeekItem[]; export declare const LOREM_IPSUM_TEXT = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; declare type MonthItem = { localeLong: string; localeShort: string; value: 'january' | 'february' | 'march' | 'april' | 'may' | 'june' | 'july' | 'august' | 'september' | 'october' | 'november' | 'december'; }; export declare const OBJECT_LANGUAGE: ILanguage; export declare const OBJECT_SERVICE: IService; declare type WeekItem = { localeLong: string; localeShort: string; value: 'mo' | 'tu' | 'we' | 'th' | 'fr' | 'sa' | 'su'; }; export { }