declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            height: string;
            width: string;
            borderRadius: number;
            '& .MuiCardContent-root': {
                display: string;
                flexDirection: string;
                height: string;
                padding: any;
                '& .SCPrivateMessageSnippets-search-bar': {
                    padding: any;
                    '& .SCPrivateMessageSnippets-input': {
                        borderRadius: any;
                        '& .MuiInputBase-input, MuiFilledInput-input': {
                            padding: any;
                        };
                        '& .SCPrivateMessageSnippets-icon': {
                            marginRight: any;
                        };
                    };
                };
                '& .SCPrivateMessageSnippets-new-message-button': {
                    color: string;
                    alignSelf: string;
                    backgroundColor: string;
                    '&:hover': {
                        borderWidth: string;
                        backgroundColor: any;
                    };
                };
                '& .MuiList-root': {
                    flexGrow: number;
                    overflowY: string;
                    padding: any;
                    '& .Mui-selected': {
                        backgroundColor: any;
                    };
                    '& .MuiButtonBase-root, MuiListItemButton-root': {
                        '&:hover': {
                            borderRadius: string;
                            backgroundColor: any;
                        };
                    };
                };
            };
            '& .MuiPaper-root, MuiCard-root, SCWidget-root, SCPrivateMessageSnippets-root, MuiCardContent-root': {
                padding: any;
            };
        };
        skeletonRoot: ({ theme }: any) => {};
    };
};
export default Component;
