export interface CreatePaymentAccountRequest {
    accountId: string;
    accountName: string;
    accessToken: string;
    publicKey?: string;
    isDefault?: boolean;
}
export interface PaymentAccountResponse {
    accountId: string;
    accountName: string;
    publicKey?: string;
    isDefault: boolean;
    isActive: boolean;
    createdAt: string;
    updatedAt: string;
}
//# sourceMappingURL=PaymentAccount.d.ts.map