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 TabBaseProps = Prettify & SelectOptionStateRenderProps>; export type TabProps = HeadlessPropsWithRef>; /** * One tab in a `TabList`. The required `value` prop links it to the `TabPanel` * with the same value. * * Renders a `
` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/tabs.md} */ export declare function Tab(props: TabProps): JSX.Element; //# sourceMappingURL=Tab.d.ts.map