export type SelectInputItem = { label: string; value: string; disabled?: boolean; }; export type SelectInputProps = { items: SelectInputItem[]; onSelect: (item: SelectInputItem) => void; }; export declare function SelectInput({ items, onSelect }: SelectInputProps): import("react/jsx-runtime").JSX.Element; export declare function getSelectInput(props: SelectInputProps): React.ReactNode;