import { SelectProps, SelectField as SelectZodField } from "@form-atoms/field"; import { SelectProps as FlowbiteSelectProps } from "flowbite-react"; import { type WithHelperText } from "../field"; export type SelectFieldProps = SelectProps & FlowbiteSelectProps & WithHelperText; export declare const SelectField: ({ field, options, getValue, getLabel, placeholder, label, helperText, required, initialValue, ...uiProps }: SelectFieldProps) => JSX.Element;