import { currencyAmount } from "./sqp-details-card-view"; import { CurrencyValue } from "./usePaypalDetails"; export interface ScheduleCardViewProps { active: boolean; setActivePayout: () => void; loading: boolean; empty?: boolean; otherCurrencies: boolean | CurrencyValue[]; statusText: string; otherCurrenciesText: string; mainCurrency: currencyAmount; hasW9Pending?: boolean; hasDatePending?: boolean; w9Pending?: currencyAmount[]; status: "pending" | "upcoming" | "next payout"; additionalW9Text: string; } export declare function ScheduleCardView(props: ScheduleCardViewProps): any;