import { Client } from '../Client';
interface GetContractMetaResponse {
    meta: any;
}
export declare class ContractMetaStore {
    private readonly client;
    constructor(client: Client);
    getContractMeta(contractId: string): Promise<GetContractMetaResponse>;
    private call;
}
export {};
