import { type SpectrumTabPanelsProps } from '@adobe/react-spectrum'; export interface DHCTabPanelsProps extends SpectrumTabPanelsProps { /** * If static panels with keys should stay mounted when not visible. * This will not apply to dynamic panels created with a render function. * Defaults to false. */ keepMounted?: boolean; } /** * Wrapper for react-spectrum TabPanels that adds support for keeping panels mounted * when not visible using the `keepMounted` prop. * Panels created with a render function will not be kept mounted. */ export declare function DHCTabPanels(props: DHCTabPanelsProps): JSX.Element; //# sourceMappingURL=TabPanels.d.ts.map