import { mongodb, type TimestampFields } from '@unchainedshop/mongodb'; export type PaymentCredentials = { _id: string; paymentProviderId: string; userId: string; token?: string; isPreferred?: boolean; meta: any; } & TimestampFields; export declare const PaymentCredentialsCollection: (db: mongodb.Db) => Promise>;