import type { StateField } from './types'; /** The value/label pairs of a select field, ready to render. Unusable entries are dropped. */ export declare function selectFieldOptions(options: StateField['options'] | unknown): { value: string; label: string; }[];