import { type Json, type Responsive, type UiNode } from "../internal.ts"; type SelectOption = string | { value: string; label?: string; disabled?: boolean; }; type SelectProps = { size?: Responsive<"sm" | "md">; name?: string; value?: string; options: SelectOption[]; action?: Json; clearable?: boolean; disabled?: boolean; required?: boolean; placeholder?: string; }; export declare function Select(props: SelectProps): UiNode; export {};