import * as React from 'react'; import { TabsProps } from '@mui/material/Tabs'; import { TabProps } from '@mui/material/Tab'; export interface ZTabProps extends TabsProps { value?: any; handleChange: (event: React.SyntheticEvent, newValue: any) => void; labelConfigs: TabProps[]; size?: 'medium' | 'small'; tabsType?: 'indicator' | 'background' | 'text'; color?: string; } export declare const ZTabs: (props: ZTabProps) => JSX.Element;