import React from "react"; import type { SelectPrimitiveProps } from "./primitives/index.js"; import type { FormComponentProps } from "../FormComponent/index.js"; type SelectProps = SelectPrimitiveProps & FormComponentProps; declare const Select: (({ label, description, note, hint, required, disabled, validation, ...props }: SelectProps) => React.JSX.Element) & { original: ({ label, description, note, hint, required, disabled, validation, ...props }: SelectProps) => React.JSX.Element; originalName: string; displayName: string; } & { original: (({ label, description, note, hint, required, disabled, validation, ...props }: SelectProps) => React.JSX.Element) & { original: ({ label, description, note, hint, required, disabled, validation, ...props }: SelectProps) => React.JSX.Element; originalName: string; displayName: string; }; originalName: string; displayName: string; } & { createDecorator: (decorator: import("@webiny/react-composition/types.js").ComponentDecorator<(({ label, description, note, hint, required, disabled, validation, ...props }: SelectProps) => React.JSX.Element) & { original: ({ label, description, note, hint, required, disabled, validation, ...props }: SelectProps) => React.JSX.Element; originalName: string; displayName: string; }>) => (props: unknown) => React.JSX.Element; }; export { Select, type SelectProps };