declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            '& .SCEventLocationWidget-title, & .SCEventLocationWidget-location-title': {
                fontWeight: any;
            };
            '& .SCEventLocationWidget-map': {
                marginBottom: any;
                height: number;
                width: string;
            };
        };
        skeletonRoot: ({ theme }: any) => {
            '& .SCEventLocationWidget-skeleton-map': {
                margin: any;
                minHeight: number;
                width: string;
            };
        };
    };
};
export default Component;
