import type { Client } from '../../clients/createClient.js'; import type { Transport } from '../../clients/transports/createTransport.js'; import type { Account } from '../../types/account.js'; import type { Chain } from '../../types/chain.js'; import type { API_VERSION } from '../../types/components.js'; export type GetPermissionsParameters = { api_version?: API_VERSION; }; export type GetPermissionsReturnType = { permissions: string[]; }; export type GetPermissionsErrorType = { code: number; message: string; }; export declare function getPermissions(client: Client, { api_version }: GetPermissionsParameters): Promise; //# sourceMappingURL=getPermissions.d.ts.map