export declare const SPACE_ASSETS_GRID_LIMIT = 50; export declare const SPACE_ASSETS_GRID_LIMIT_LOADING = 21; export declare const SPACE_ASSETS_THUMBNAIL_HEIGHT = 192; export declare enum SPACE_ASSETS_VIEW_TYPE { THUMBNAIL = "thumbnail", LIST = "list", GALLERY = "gallery" } export declare const AM_V2_ASSET_PICKER_VIEW_STORAGE_KEY = "am-v2-asset-picker-view"; export declare enum SPACE_ASSETS_VIEW_ICON { THUMBNAIL = "Thumbnail", LIST = "List", GALLERY = "Gallery" } export declare const SPACE_ASSETS_SORT: { ASC: string; DESC: string; }; export declare const SPACE_ASSETS_THUMBNAIL_SORT_KEYS: { TITLE: string; DATE_MODIFIED: string; DATE_CREATED: string; CRREATED_BY: string; UPDATED_BY: string; FILE_SIZE: string; NO_SORT: string; }; export declare const SPACE_ASSETS_THUMBNAIL_SORT_OPTIONS: ({ label: string; value: string; disable: boolean; isSortOrder?: undefined; } | { label: string; value: string; disable: boolean; isSortOrder: boolean; })[]; export declare const SPACE_ASSETS_SEARCH_OPTIONS: { SEARCH: string; SEARCH_TYPE: string; }; export declare const SPACE_ASSETS_SEARCH_TYPES: { SUGGESTIONS: string; ALL: string; TITLE: string; URL: string; SHOW_SELECTED: string; }; export declare const SPACE_ASSETS_SEARCH_CONFIG: { searchPlaceholder: string; helpText: string; }; export declare const DEFAULT_FILTERS: { field: string; id: string; operator: string; value: string; type: string; }[]; export declare const FILTER_OPERATORS: { EQUALS: string; NOT_EQUALS: string; IN: string; NOT_IN: string; GREATER_THAN: string; LESS_THAN: string; GREATER_THAN_OR_EQUAL: string; LESS_THAN_OR_EQUAL: string; RANGE: string; REGEX: string; CONTAINS: string; }; export declare const FILE_SIZE_FORMATS_OPTIONS: { label: string; value: string; }[]; export declare const FIELDS_LIST_FILTERS_OPTIONS: { label: string; value: string; default: boolean; }[]; export declare const ASSET_SCAN_STATUSES: { QUARANTINED: string; CLEAN: string; PENDING: string; NOT_SCANNED: string; }; export declare const AM_ASSETS_SCAN = "amAssetsScan"; export declare const APPLICATION_OCTECT_STREAM = "application/octet-stream"; export declare const DISPLAY_LABELS: { [x: string]: string; }; export declare const TOOLTIP_CONTENT: { [x: string]: string; }; export declare const PILL_BACKGROUND: Record; export declare const shouldReplaceThumbnail: (scanStatus: string | undefined) => boolean; export declare const SHIELD_CROSS_DATA_URI: string; export declare const SHIELD_SEARCH_DATA_URI: string; export declare const ASSET_SCAN_STATUS_ROUTE = "_asset_scan_status"; export declare const getScanShieldUrl: (scanStatus: string | undefined) => string | undefined;