declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            marginBottom: any;
            '& .SCInlineComposerWidget-content, & .SCInlineComposerWidget-content:last-child': {
                [x: number]: {
                    padding: any;
                };
                padding: any;
                display: string;
                flexDirection: string;
                justifyContent: string;
                '& .SCInlineComposerWidget-input': {
                    display: string;
                    flexGrow: number;
                    '& .MuiButton-root': {
                        fontWeight: any;
                        letterSpacing: string;
                        padding: any;
                        '&:hover': {
                            color: any;
                            border: string;
                        };
                    };
                    "& .MuiButton-text": {
                        justifyContent: string;
                        textTransform: string;
                    };
                };
                '& .SCInlineComposerWidget-avatar': {
                    [x: number]: {
                        marginLeft: any;
                    };
                    display: string;
                    alignItems: string;
                    '& .MuiAvatar-root': {
                        width: any;
                        height: any;
                    };
                };
            };
        };
        skeletonRoot: ({ theme }: any) => {
            marginBottom: any;
            '& .SCInlineComposerWidget-content, & .SCInlineComposerWidget-content:last-child': {
                [x: number]: {
                    padding: any;
                };
                padding: any;
                display: string;
                flexDirection: string;
                justifyContent: string;
                '& .SCInlineComposerWidget-input': {
                    display: string;
                    flexGrow: number;
                    height: number;
                    width: string;
                    '& .MuiSkeleton-root': {
                        width: string;
                        height: string;
                    };
                };
                '& .SCInlineComposerWidget-avatar': {
                    [x: number]: {
                        marginLeft: any;
                    };
                    display: string;
                    alignItems: string;
                    '& .MuiSkeleton-root': {
                        width: any;
                        height: any;
                    };
                };
            };
        };
    };
};
export default Component;
