declare const Component: {
    styleOverrides: {
        root: ({ theme }: {
            theme: any;
        }) => {
            '& .MuiDialogTitle-root': {
                textAlign: string;
                fontSize: string;
                fontWeight: number;
            };
            '& .MuiDialogContent-root': {
                display: string;
                minHeight: number;
                justifyContent: string;
                alignItems: string;
                '& .SCWidget-root': {
                    minWidth: number;
                };
                '& .MuiTypography-body2': {
                    marginTop: any;
                };
            };
        };
    };
};
export default Component;
