declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            '& .SCFooter-copyright': {
                marginTop: any;
                fontSize: string;
            };
            '& .SCFooter-item-list': {
                display: string;
                justifyContent: string;
                flexDirection: string;
                '& .SCFooter-item': {
                    padding: any;
                    color: any;
                };
            };
        };
        skeletonRoot: ({ theme }: any) => {};
    };
};
export default Component;
