declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            display: string;
            flexDirection: string;
            marginTop: string;
            "& .SCPdfPreview-document-pdf-wrapper": {
                filter: string;
            };
            "& .SCPdfPreview-document-pdf-link": {
                padding: number;
                '&:hover': {
                    opacity: number;
                };
            };
            "& .SCPdfPreview-document-pdf-page": {
                display: string;
                flexDirection: string;
                justifyContent: string;
                marginBottom: any;
                pageBreakAfter: string;
                '& .react-pdf__Page__textContent': {
                    mixBlendMode: string;
                    opacity: number;
                };
                '& .react-pdf__Page__canvas': {
                    margin: string;
                };
            };
        };
    };
};
export default Component;
