export type LabelInputSize = 'mini' | 'small' | 'normal' | 'large'; export type LabelInputType = 'text' | 'password' | 'number' | 'email' | 'tel'; export type LabelInputVariant = 'outlined' | 'filled' | 'underlined'; export interface ValidationRule { (value: string): boolean | string; }