declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            [x: number]: {
                minWidth: string;
            };
            width: number;
            '& .SCCustomSnackMessage-card': {
                width: string;
                '& .SCCustomSnackMessage-content': {
                    position: string;
                    padding: any;
                    '& .SCCustomSnackMessage-close': {
                        position: string;
                        right: number;
                        top: number;
                        zIndex: number;
                    };
                    a: {
                        color: any;
                        textDecoration: string;
                        '&:hover': {
                            textDecoration: string;
                        };
                    };
                };
            };
        };
    };
};
export default Component;
