import type { JSX } from 'solid-js'; import type { SelectOptionStateOptions } from '../../states/create-select-option-state'; import type { HeadlessProps, ValidConstructor } from '../../utils/dynamic-prop'; export interface TabPanelBaseProps extends Exclude, 'disabled'> { unmount?: boolean; } export type TabPanelProps = HeadlessProps>; /** * The content shown for the `Tab` with the same `value`. Unmounts while its * tab is unselected unless `unmount={false}` is set. * * Renders a `
` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/tabs.md} */ export declare function TabPanel(props: TabPanelProps): JSX.Element; //# sourceMappingURL=TabPanel.d.ts.map