declare const Component: {
    styleOverrides: {
        root: ({ theme }: {
            theme: any;
        }) => {
            '& .SCMyEventsWidget-title-wrapper': {
                padding: string;
            };
            '& .SCMyEventsWidget-actions': {
                padding: string;
                justifyContent: string;
                gap: any;
                '& .SCMyEventsWidget-arrows': {
                    width: string;
                    height: string;
                };
                '& .SCMyEventsWidget-action-button': {
                    color: any;
                    textDecoration: string;
                };
            };
        };
        skeletonRoot: ({ theme }: {
            theme: any;
        }) => {
            '& .SCMyEventsWidget-actions': {
                height: string;
                padding: string;
                justifyContent: string;
                gap: any;
            };
        };
    };
};
export default Component;
