import * as react_jsx_runtime from 'react/jsx-runtime'; import * as React from 'react'; type NativeSelectProps = Omit, "size"> & { size?: "sm" | "default"; }; declare function NativeSelect({ className, size, ...props }: NativeSelectProps): react_jsx_runtime.JSX.Element; declare function NativeSelectOption({ className, ...props }: React.ComponentProps<"option">): react_jsx_runtime.JSX.Element; declare function NativeSelectOptGroup({ className, ...props }: React.ComponentProps<"optgroup">): react_jsx_runtime.JSX.Element; export { NativeSelect, NativeSelectOptGroup, NativeSelectOption };