import type { WorkSpreadsheetDataValidationErrorStyle } from './work-types'; export declare const SPREADSHEET_DATA_VALIDATION_TITLE_LIMIT = 32; export declare const SPREADSHEET_DATA_VALIDATION_HINT_LIMIT = 255; export declare const SPREADSHEET_DATA_VALIDATION_ERROR_LIMIT = 225; export declare const SPREADSHEET_DATA_VALIDATION_FORMULA_LIMIT = 255; export declare const SPREADSHEET_DATA_VALIDATION_ERROR_STYLES: readonly ["stop", "warning", "information"]; export declare function normalizeSpreadsheetDataValidationErrorStyle(value: unknown): WorkSpreadsheetDataValidationErrorStyle; export declare function boundedSpreadsheetDataValidationText(value: unknown, limit: number): string; export declare function normalizeSpreadsheetDateValidationBoundary(value: string, uses1904DateSystem?: boolean): string | null; export declare function spreadsheetDateValidationFormula(value: string): string;