/**
 * This file was auto-generated by Fern from our API Definition.
 */
/**
 * A dropdown option component that can be selected.
 */
export interface DropdownOption {
    /** The type of component you are rendering. */
    type: "option";
    /** A unique identifier for the option. */
    id: string;
    /** The text shown within this option. */
    text: string;
    /** Styles the option and prevents the action. Default is false. */
    disabled?: boolean;
}
