declare const Component: {
    styleOverrides: {
        root: ({ theme }: {
            theme: any;
        }) => {
            '& .SCUserLiveStreamWidget-content': {
                '& .SCUserLiveStreamWidget-header': {
                    flexDirection: string;
                    justifyContent: string;
                    alignItems: string;
                    marginBottom: any;
                    '& .SCUserLiveStreamWidget-avatar-wrapper': {
                        flexDirection: string;
                        alignItems: string;
                        color: string;
                        padding: number;
                        minWidth: string;
                        '& .SCUserLiveStreamWidget-avatar': {
                            width: any;
                            height: any;
                        };
                    };
                    '& h4': {
                        marginLeft: number;
                        lineHeight: string;
                    };
                };
                '& .SCUserLiveStreamWidget-live-wrapper': {
                    paddingTop: any;
                    gap: any;
                    '& .SCUserLiveStreamWidget-live': {
                        '& > div': {
                            padding: string;
                            '& > .SCBaseItem-content': {
                                '& > .SCBaseItem-text': {
                                    margin: number;
                                };
                            };
                        };
                    };
                };
            };
            '& .SCUserLiveStreamWidget-actions': {
                padding: string;
                justifyContent: string;
                '& .SCSuggestedEventsWidget-actionButton': {
                    color: any;
                };
            };
        };
        skeletonRoot: ({ theme }: {
            theme: any;
        }) => {
            '& .SCUserLiveStreamWidget-content': {
                padding: string;
                '& .SCUserLiveStreamWidget-user': {
                    marginBottom: any;
                    '& > .SCBaseItem-content': {
                        '& > .SCBaseItem-text': {
                            margin: number;
                        };
                    };
                    '& > .SCBaseItem-actions': {
                        display: string;
                    };
                };
                '& .SCUserLiveStreamWidget-live-wrapper': {
                    gap: any;
                    '& .SCUserLiveStreamWidget-live': {
                        '& > div': {
                            padding: string;
                            '& > .SCBaseItem-content': {
                                '& > .SCBaseItem-text': {
                                    margin: number;
                                };
                            };
                        };
                    };
                };
            };
            '& .SCUserLiveStreamWidget-actions': {
                padding: string;
                justifyContent: string;
            };
        };
        dialogRoot: ({ theme }: {
            theme: any;
        }) => {
            '& .SCUserLiveStreamWidget-infinite-scroll': {
                [x: number]: {
                    height: string;
                };
                height: string;
                '& .SCEvent-root': {
                    width: string;
                };
            };
        };
    };
};
export default Component;
