///
import { DataContract, Identity, Identifier } from '@dashevo/wasm-dpp';
import Client from '../Client';
declare class StateRepository {
private readonly client;
constructor(client: Client);
fetchIdentity(id: Identifier | string): Promise;
fetchDataContract(identifier: Identifier | string): Promise;
isAssetLockTransactionOutPointAlreadyUsed(): Promise;
verifyInstantLock(): Promise;
fetchTransaction(id: string): Promise<{
data: Buffer;
height: number;
}>;
fetchLatestPlatformCoreChainLockedHeight(): Promise;
}
export default StateRepository;