import { type ComponentType } from "react"; export interface InlineSelectFieldOption { value: string; label: string; } export interface InlineSelectFieldProps { icon?: ComponentType<{ className?: string; }>; label: string; value: string | null; options: readonly InlineSelectFieldOption[]; placeholder?: string; disabled?: boolean; allowClear?: boolean; onSave: (next: string | null) => Promise; } export declare function InlineSelectField({ icon: Icon, label, value, options, placeholder, disabled, allowClear, onSave, }: InlineSelectFieldProps): import("react").JSX.Element;