import React from 'react'; import { FlintOption as FlintOptionElement } from '@getufy/flint-ui/select/flint-option'; /** * An option element for use inside ``. Provides a declarative child-element API as an alternative to the `options` prop. * * @slot (default) - Option label text. Falls back to the `label` prop if empty. */ export interface FlintOptionProps extends React.HTMLAttributes { /** The machine-readable value for this option. */ value?: string; /** Display label. If not set, the element's text content is used. */ label?: string; /** Whether this option is disabled. */ disabled?: boolean; /** Optional group name. Options with the same group are rendered under a group header. */ group?: string; } export declare const FlintOption: React.ForwardRefExoticComponent>;