import { ReactNode } from "react"; import { FieldProps } from '../Field'; import { PrismaneProps } from '../../types'; export type SelectFieldProps = PrismaneProps<{ options: { value: string; element: ReactNode; }[]; item?: (chosen: boolean, value: string, element: ReactNode, active: boolean) => ReactNode; }, FieldProps>; declare const SelectField: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default SelectField; //# sourceMappingURL=SelectField.d.ts.map