import { SxProps } from '@mui/material'; import { ElementType, PropsWithChildren } from 'react'; export interface TabPanelProps extends PropsWithChildren { index: number; value: number; orientation?: "horizontal" | "vertical"; paddingY?: number | string; paddingX?: number | string; fullHeight?: boolean; sx?: SxProps; } declare const _default: import('react').ForwardRefExoticComponent>; export default _default;