export declare const NO_DATA_TEMPLATES: { default: "default"; }; /** Binary thousand for calculating file sizes */ export declare const BINARY_THOUSAND = 1024; export declare const FILE_SIZE_UNITS: { GB: "GB"; MB: "MB"; TB: "TB"; byte: "byte"; kB: "kB"; }; export declare const FILE_SIZE_RUS_UNITS: { byte: "байт"; kB: "Кб"; MB: "Мб"; GB: "Гб"; TB: "Тб"; }; /** Ordered list with russian size units for calculating file sizes */ export declare const SIZE_RUS_UNITS: ("байт" | "Кб" | "Мб" | "Гб" | "Тб")[]; /** Default number of decimal places for a rounded number */ export declare const DECIMALS_DEFAULT = 2; /** Maximum allowed size of uploaded file */ export declare const MAX_FILE_SIZE: number; /** Minimum allowed size of uploaded file */ export declare const MIN_FILE_SIZE = 0; export declare const COMPONENTS_NAMESPACES: { readonly autoComplete: "autoComplete"; readonly button: "button"; readonly buttonGroup: "buttonGroup"; readonly checkBox: "checkBox"; readonly checkBoxTree: "checkBoxTree"; readonly collapse: "collapse"; readonly collapseBody: "collapseBody"; readonly collapseHeading: "collapseHeading"; readonly collapsePanel: "collapsePanel"; readonly countDown: "countDown"; readonly currency: "currency"; readonly dateTimeInput: "dateTimeInput"; readonly dateTimeInputRange: "dateTimeInputRange"; readonly drawer: "drawer"; readonly dropDown: "dropDown"; readonly dropDownLink: "dropDownLink"; readonly dropDownSelect: "dropDownSelect"; readonly dropZone: "dropZone"; readonly fileDrop: "fileDrop"; readonly fileList: "fileList"; readonly fileUpload: "fileUpload"; readonly input: "input"; readonly linkTree: "linkTree"; readonly loader: "loader"; readonly loaderComponent: "loaderComponent"; readonly maskedInput: "maskedInput"; readonly menu: "menu"; readonly modal: "modal"; readonly modalBody: "modalBody"; readonly modalFooter: "modalFooter"; readonly modalHeader: "modalHeader"; readonly multiSelect: "multiSelect"; readonly notifications: "notifications"; readonly numericRange: "numericRange"; readonly numericTextBox: "numericTextBox"; readonly pagination: "pagination"; readonly password: "password"; readonly progressBar: "progressBar"; readonly radio: "radio"; readonly rating: "rating"; readonly slider: "slider"; readonly statusBar: "statusBar"; readonly stickyPanel: "stickyPanel"; readonly suggestionList: "suggestionList"; readonly switcher: "switcher"; readonly tabs: "tabs"; readonly tags: "tags"; readonly textarea: "textarea"; readonly tooltip: "tooltip"; readonly tour: "tour"; readonly vstepper: "vstepper"; readonly wizard: "wizard"; }; /** Error codes for DropZone, FileDrop и FileUpload */ export declare enum FileErrorCodes { None = 0, FileIsTooSmall = 1, FileIsTooBig = 2, WrongFileFormat = 3, AlreadyLoaded = 4, TooManyFiles = 5, NameIsTooLong = 6 } /** Ошибки DropZone, FileDrop и FileUpload */ export declare const ERROR_MESSAGES: { errorCode: FileErrorCodes; message: string; }[]; export declare const predefinedAllowedSymbols: { numbers: RegExp; }; export declare const predefinedForbiddenSymbols: { numbers: RegExp; }; /** Added to list of suggestions when all suggestions can be selected */ export declare const selectAllSuggestion: { text: string; }; /** Group selected status of suggestions */ export declare enum SuggestionsGroupSelected { /** Not selected. When no suggestion in group is selected */ Nothing = 0, /** Partly selected. When there are selected and unselected suggestions in group */ Some = 1, /** Completely selected. When all suggestion in group are selected */ All = 2 }