import type { JSX } from 'solid-js'; import type { SelectOptionStateOptions, SelectOptionStateRenderProps } from '../../states/create-select-option-state'; import type { HeadlessPropsWithRef, ValidConstructor } from '../../utils/dynamic-prop'; import type { OmitAndMerge, Prettify } from '../../utils/types'; import type { ButtonProps } from '../button'; export type SelectOptionBaseProps = Prettify & SelectOptionStateRenderProps>; export type SelectOptionProps = HeadlessPropsWithRef, ButtonProps>>; export declare function SelectOption(props: SelectOptionProps): JSX.Element; //# sourceMappingURL=SelectOption.d.ts.map