interface CreateOptionProps {
    value: string;
    label: string;
    selected?: boolean;
}
export declare const createOption: ({ value, label, selected }: CreateOptionProps) => HTMLOptionElement;
export {};
