export declare const FIELD_SIZES: readonly ["small", "medium", "large"]; export type FieldSize = (typeof FIELD_SIZES)[number]; export declare const LABEL_DIRECTIONS: readonly ["inside", "top"]; export type LabelDirection = (typeof LABEL_DIRECTIONS)[number]; export declare const FIELD_TYPES: readonly ["text", "number", "password"]; export type FieldType = (typeof FIELD_TYPES)[number];