export interface TabPanelProps extends React.ComponentProps<"div"> { /** Panel content */ children: React.ReactNode; /** If set to `true`, the content will be kept mounted, even if `keepMounted` is set `false` in the parent `Tabs` component */ keepMounted?: boolean; /** Value of associated control */ value: string; } export declare function TabPanel(props: TabPanelProps): import("react").JSX.Element;