import { ReactNode } from 'react'; import { ViewProps } from '../View'; import { ICSS } from '@codeleap/styles'; type PanelProps = Omit & { value: string; children: ReactNode; style?: ICSS; keepMounted?: boolean; }; /** * Inactive panels are hidden via `display: 'none'` rather than unmounted, so their state is * preserved across tab switches when `keepMounted` is true. Set `keepMounted={false}` at the * Tabs or Panel level to unmount inactive panels and reclaim memory at the cost of re-mounting. */ export declare const Panel: ({ keepMounted: panelKeepMounted, ...props }: PanelProps) => import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=Panel.d.ts.map