import { DIDTypes } from "../models"; import { ICertificationable, ICertifiedDemand } from "./certification"; export declare type IDiscloseDemandPayload = ICertificationable & { explicitValue: string[]; type: DIDTypes; }; export declare type IDiscloseDemandCertificationPayload = ICertificationable; export declare type IDiscloseDemand = ICertifiedDemand; export declare type IDiscloseDemandCertification = ICertifiedDemand;