import type { SeverityFgColor } from '@skf-design-system/ui-assets'; type HTMLInputTypeAttribute = 'button' | 'checkbox' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'radio' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week'; type FormFieldSeverity = Exclude; export interface FormFieldBaseProps { customInvalid?: unknown; disabled?: boolean; invalid?: boolean; hideLabel?: boolean; hint?: string; label?: string; max?: number | string; maxlength?: number; min?: number | string; minlength?: number; name?: string; pattern?: string; placeholder?: string; readonly?: boolean; required?: boolean; requiredLabel?: string; severity?: FormFieldSeverity; showValid?: boolean; size?: 'md' | 'sm'; type?: HTMLInputTypeAttribute; value?: string | number; } export {};