import React from 'react'; import { CustomComponentWithChildrenProps } from '../styles'; import './TabPanel.types'; export interface TabPanelProps extends CustomComponentWithChildrenProps { hidden?: boolean; disablePadding?: boolean; size?: 'small' | 'medium'; } declare const slots: { root: { slot: "root"; name: "MuiTabPanel"; }; }; export type TabPanelSlots = keyof typeof slots; declare const TabPanel: React.FC; export default TabPanel;