import { APIAccount, APIOperation, AccountsGetOperationsOptions } from "./types";
declare const api: {
    getBlockCount(): Promise<number>;
    getLastBlock(): Promise<{
        hash: string;
        level: number;
        date: Date;
    }>;
    getAccountByAddress(address: string): Promise<APIAccount>;
    getAccountOperations(address: string, query: AccountsGetOperationsOptions): Promise<APIOperation[]>;
};
export declare const fetchAllTransactions: (address: string, lastId?: number) => Promise<APIOperation[]>;
export default api;
//# sourceMappingURL=tzkt.d.ts.map