import { Network } from '../types';
export interface MirrorNodeAccountKey {
    _type: string;
    key: string;
}
export interface MirrorNodeAccountResponse {
    key?: MirrorNodeAccountKey;
}
export declare class HederaMirrorNode {
    private readonly baseUrl;
    constructor(network: Network, baseUrl?: string);
    requestAccount(accountId: string): Promise<MirrorNodeAccountResponse>;
}
