export declare const datePickTypes: readonly ["year", "month", "date", "dates", "week", "datetime", "datetimerange", "daterange", "monthrange"]; export type DatePickType = typeof datePickTypes[number]; export declare const componentSizes: readonly ["default", "small", "large"]; export type ComponentSize = typeof componentSizes[number]; export declare const isValidComponentSize: (val: string) => val is "" | "small" | "default" | "large"; export declare const isValidDatePickType: (val: string) => val is "datetimerange" | "dates" | "month" | "year" | "date" | "week" | "datetime" | "daterange" | "monthrange";