export declare function BaseSelectField({ value, onChange, options, errorMessage, label, }: { value?: string; onChange: (value: string | undefined) => void; options: string[]; errorMessage?: string; label: string; }): import("react/jsx-runtime").JSX.Element;