declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            '& .SCLiveStreamSelector-warning': {
                margin: any;
                "& a": {
                    color: any;
                    fontWeight: string;
                    textDecoration: string;
                    whiteSpace: string;
                };
            };
            '& .SCLiveStreamSelector-options': {
                [x: number]: {
                    display: string;
                };
                display: string;
                justifyContent: string;
                alignItems: string;
                '& > div': {
                    [x: number]: {
                        margin: string;
                        marginBottom: any;
                    };
                    width: string;
                };
            };
            '& .SCLiveStreamSelector-actions': {
                display: string;
                justifyContent: string;
                alignItems: string;
                marginTop: any;
            };
        };
        optionCardRoot: ({ theme, selected }: any) => {
            maxWidth: number;
            height: string;
            minHeight: number;
            padding: any;
            margin: any;
            cursor: string;
            transition: any;
            backgroundColor: any;
            '&:hover': {
                backgroundColor: any;
                border: string;
                boxShadow: any;
            };
            border: string;
            "& > div": {
                display: string;
                justifyContent: string;
                alignItems: string;
                marginBottom: number;
                maxWidth: string;
            };
            "& ul": {
                marginTop: any;
                padding: number;
                listStyle: string;
            };
        };
        featureItemRoot: ({ theme, selected }: any) => {
            display: string;
            alignItems: string;
            gap: any;
            marginBottom: any;
            '&:last-child': {
                marginBottom: number;
            };
        };
    };
};
export default Component;
