import React from 'react';
import { TabProps } from '@mui/material';
interface StyledTabsPropsModel {
    children?: React.ReactNode;
    value: number;
    onChange: (event: React.SyntheticEvent, newValue: number) => void;
}
export declare const StyledTabs: import("@emotion/styled").StyledComponent<StyledTabsPropsModel & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
interface StyledTabPropsModel {
    label: string;
    tabProps?: TabProps;
}
export declare const StyledTab: import("@emotion/styled").StyledComponent<StyledTabPropsModel & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
declare const styles: {
    StyledTab: import("@emotion/styled").StyledComponent<StyledTabPropsModel & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
    StyledTabs: import("@emotion/styled").StyledComponent<StyledTabsPropsModel & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
};
export default styles;
