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 { Prettify } from '../../utils/types'; export type RadioGroupOptionBaseProps = Prettify & SelectOptionStateRenderProps>; export type RadioGroupOptionProps = HeadlessPropsWithRef>; /** * One choice in a `RadioGroup`. The required `value` prop is what selecting it * produces. * * Renders a `
` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/radio-group.md} */ export declare function RadioGroupOption(props: RadioGroupOptionProps): JSX.Element; //# sourceMappingURL=RadioGroupOption.d.ts.map