import { ApiPromise } from "@polkadot/api";
export declare const ISSUER_PALLET_NAME = "issuersModule";
export declare const getIssuer: (api: ApiPromise, hashId: string) => Promise<{
    name: string;
    controllers: string[];
} | undefined>;
