/**
 * Options for verifying a proof
 */
export interface VerifyProofOptions {
    /**
     * The proof
     */
    readonly proof: any;
    /**
     * The document
     */
    readonly document: any;
    /**
     * The proof purpose to specify for the generated proof
     */
    readonly purpose: any;
    /**
     * Optional custom document loader
     */
    documentLoader?: Function;
    /**
     * Optional expansion map
     */
    expansionMap?: Function;
}
