declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            color: string;
            verticalAlign: string;
            '& .MuiIcon-root': {
                fontSize: string;
                marginRight: number;
            };
            '& .MuiTypography-root': {
                lineHeight: string;
                fontSize: string;
            };
        };
    };
};
export default Component;
