import { PropFunction, QwikIntrinsicElements } from "@builder.io/qwik"; import { Placement } from "@floating-ui/dom"; type Direction = "ltr" | "rtl"; export type SelectProps = { defaultValue?: string; value?: string; onValueChange?: PropFunction<(value: string) => void>; defaultOpen?: boolean; open?: boolean; onOpenChange?: PropFunction<(open: boolean) => void>; dir?: Direction; name?: string; disabled?: boolean; required?: boolean; position?: Placement; offset?: number; } & QwikIntrinsicElements["div"]; declare const Select: import("@builder.io/qwik").Component; declare const Root: import("@builder.io/qwik").Component; export { Root, Select };