import { ValidationError } from 'fastapi-rtk/api-types'; import { MRT_RowData } from '../../.external/lib/mantine-react-table'; export declare const DEFAULT_PAGE = 0; export declare const DEFAULT_PAGE_SIZE = 25; export declare const DEFAULT_PAGE_SIZE_OPTIONS: string[]; export declare const DEBOUNCE_DELAY = 400; export declare const DEBOUNCE_LOADING_DELAY = 50; export declare const DEBOUNCE_JSONFORMS_DELAY = 100; export declare const DEFAULT_DELIMITER = ","; export declare const DELIMITER_DATA: { value: string; label: string; }[]; export declare const DEFAULT_QUOTECHAR: string | null; export declare const QUOTECHAR_DATA: { value: string; label: string; }[]; export declare const initialState: { errors: ValidationError[]; data: MRT_RowData | undefined; }; export declare const VIEW_MODE: { readonly NORMAL: "normal"; readonly FULL_SCREEN: "fullScreen"; readonly OVERLAY: "overlay"; }; export declare const BASE_LANGUAGES: { value: string; label: string; }[]; export declare const LANG_LOCAL_STORAGE_PROPS: { key: string; defaultValue: string; getInitialValueInEffect: boolean; }; export declare const MRT_LOCALIZATION_IMPORT_MAP: { de: () => Promise; en: () => Promise; }; export declare const DEBUG_SESSION_STORAGE_KEY = "fastapi-rtk-debug"; export declare const isDebugMode: () => boolean; export declare const setDebugMode: (debug: boolean) => void;