import { Response } from "..";
import { FundingAccount } from "../../objects";
import { GetEndpoint } from ".";
/**
 * List all the funding accounts associated with the privacy account
 */
export declare class ListFundingAccountsRequest extends GetEndpoint {
    path: string;
    params: {};
    constructor(params?: ListFundingAccountsParams);
}
/**
 * Parameters for {@link ListFundingAccountsRequest}
 * @defaultValue { filter: "NONE" }
 */
export declare type ListFundingAccountsParams = {
    filter: "NONE"
    /** List bank funding accounts */
     | "BANK"
    /** List card funding accounts */
     | "CARD";
};
export declare type ListFundingAccountsResponse = Response<FundingAccount[]>;
