import type { UsePaymentTokensOptions } from './types/index.js'; declare function usePaymentTokens(options?: UsePaymentTokensOptions): { isLoading: boolean; error: import("@farfetch/blackout-redux").Nullable; data: { items: import("@farfetch/blackout-client").PaymentToken[] | undefined; }; isFetched: boolean; actions: { fetch: (query?: import("@farfetch/blackout-client").GetPaymentTokensQuery | undefined, config?: import("@farfetch/blackout-client").Config | undefined) => Promise; remove: (id: string, config?: import("@farfetch/blackout-client").Config | undefined) => Promise; }; }; export default usePaymentTokens;