declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            padding: any;
            minWidth: string;
        };
        dialogRoot: ({ theme }: any) => {
            '& .MuiDialogContent-root': {
                paddingLeft: any;
            };
            '& .SCChangePictureButton-images-list': {
                maxHeight: number;
            };
            '& .SCChangePictureButton-image-item': {
                '& .MuiImageListItemBar-actionIcon, .MuiIconButton-root': {
                    color: any;
                };
                '& .SCChangePictureButton-primary': {
                    border: string;
                };
            };
        };
    };
};
export default Component;
