import type { JSX } from 'solid-js'; import type { SelectStateRenderProps, SingleSelectStateControlledOptions, SingleSelectStateUncontrolledOptions } from '../../states/create-select-state'; import type { HeadlessPropsWithRef, ValidConstructor } from '../../utils/dynamic-prop'; import type { Prettify } from '../../utils/types'; export interface TabGroupBaseProps { horizontal: boolean; } export type TabGroupControlledBaseProps = Prettify & SelectStateRenderProps>; export type TabGroupControlledProps = HeadlessPropsWithRef>; export type TabGroupUncontrolledBaseProps = Prettify & SelectStateRenderProps>; export type TabGroupUncontrolledProps = HeadlessPropsWithRef>; export type TabGroupProps = TabGroupControlledProps | TabGroupUncontrolledProps; export declare function TabGroup(props: TabGroupProps): JSX.Element; //# sourceMappingURL=TabGroup.d.ts.map