declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            height: string;
            width: string;
            overflowY: string;
        };
        dialogRoot: ({ theme }: any) => {
            "& .SCLiveStreamVideoConference-end-conference-wrap": {
                display: string;
                justifyContent: string;
                alignItems: string;
                alignContent: string;
                flexDirection: string;
                textAlign: string;
                "& .SCLiveStreamVideoConference-logo": {
                    img: {
                        maxHeight: number;
                        maxWidth: number;
                    };
                    marginBottom: any;
                };
                "& .SCLiveStreamVideoConference-btn-back-home": {
                    marginTop: any;
                };
            };
        };
    };
};
export default Component;
