import { DetailsCardViewProps } from "./sqp-details-card-view"; import { PaypalAccountDetails } from "./sqp-paypal-details"; export declare type CurrencyValue = { currencyText: string; amountText: string; value: number; }; export declare function usePayPalDetails(props: PaypalAccountDetails): { loading: boolean; detailsProps: DetailsCardViewProps; integrationDisabled: boolean; integrationPaused: boolean | undefined; ScheduleContent: any[]; };