/** * Shared size scale for Beam input components (TextField, NativeSelect, Select, * Autocomplete, Search). `md` is the default. */ export declare const INPUT_SIZES: readonly ["sm", "md", "lg"]; export type InputSize = typeof INPUT_SIZES[number]; export declare const defaultInputSize: "md"; /** * Resolve the `size` prop (design size or, for backward compatibility, a native * character width) into the field size modifier and the native `size` value. * A `number` size routes to the native width; `htmlSize` always wins. */ export declare const resolveInputSize: (size?: InputSize | number, htmlSize?: number) => { fieldSize: InputSize; nativeSize: number | undefined; };