import { AccountResponse } from '../../entities'; import { RequestConfig } from '../Transactions'; import { Query } from './Query'; export type AccountQueryProps = { actor: string; }; export type AccountQueryData = { account_name: string; }; export declare class AccountQuery extends Query { props: AccountQueryProps; ENDPOINT: "chain/get_account"; constructor(config: RequestConfig, props: AccountQueryProps); getData: () => { account_name: string; }; } //# sourceMappingURL=AccountQuery.d.ts.map