import { type Metadata } from "../common/Metadata.js";
import { type Assert } from "./common/Assert.js";
/** Copyright Super iPaaS Integration LLC, an IBM Company 2024 */
/** The Assertion related information for testing API is captured in the Assertion */
export interface Assertion {
    kind?: string | undefined;
    /** common metadata to identify a specific asset in the files */
    metadata?: Metadata | undefined;
    spec?: Assert[] | undefined;
    kindEnum?: Assertion_KindEnums | undefined;
    apiVersion?: string | undefined;
}
/** Kind id supported for environment sequence */
export declare enum Assertion_KindEnums {
    Assertion = "Assertion"
}
//# sourceMappingURL=Assertion.d.ts.map