declare const Component: {
    styleOverrides: {
        root: ({ theme }: {
            theme: any;
        }) => {
            '& .SCPaymentOrder-details': {
                marginTop: any;
                marginLeft: any;
                '& p': {
                    marginBottom: any;
                };
                '& .SCPaymentOrderPdfButton-root': {
                    marginTop: any;
                };
            };
        };
        skeletonRoot: ({ theme }: {
            theme: any;
        }) => {};
    };
};
export default Component;
