declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {};
        skeletonRoot: ({ theme }: any) => {};
        dialogRoot: ({ theme }: any) => {};
        pollSnippetRoot: ({ theme }: any) => {
            '& > div': {
                alignItems: string;
                paddingTop: any;
            };
            '& .SCBaseItem-text': {
                marginTop: number;
            };
            '& .SCPollSuggestionWidget-username': {
                color: any;
                fontWeight: any;
                textDecoration: string;
            };
            '& .SCPollSuggestionWidget-avatar': {
                width: any;
                height: any;
            };
            '& .SCPollSuggestionWidget-activity-at': {
                textDecoration: string;
                color: string;
                marginTop: number;
            };
        };
    };
};
export default Component;
