import { ICPRosettaBlockHeightResponse, ICPRosettaGetBalancesResponse, ICPRosettaGetTxnsHistoryResponse } from "../bridge/bridgeHelpers/icpRosetta/types";
export declare const getICPRosettaNetworkIdentifier: () => {
    network_identifier: {
        blockchain: string;
        network: string;
    };
};
export declare const fetchBlockHeight: () => Promise<ICPRosettaBlockHeightResponse>;
export declare const fetchBalances: (accountId: string) => Promise<ICPRosettaGetBalancesResponse>;
export declare const fetchTxns: (accountId: string) => Promise<ICPRosettaGetTxnsHistoryResponse>;
export declare const constructionInvoke: <TRequest, TResponse>(opts: TRequest, method: string) => Promise<TResponse>;
//# sourceMappingURL=api.d.ts.map