import { TLong } from '../../interface'; /** * GET /leasing/active/{address} * Get all active leases for an address */ export declare function fetchActive(base: string, address: string, options?: RequestInit): Promise>; /** * GET /leasing/info/ * Get lease transactions info. */ export declare function fetchLeasingInfo(base: string, ids: string[], options?: RequestInit): Promise>; export interface ILeaseInfo { id: string; originTransactionId: string; sender: string; recipient: string; amount: TLong; height: number; status: string; cancelHeight: number | null; cancelTransactionId: string | null; }