import { type Metadata } from "../common/Metadata.js";
import { type Path } from "../common/Path.js";
/** Copyright Super iPaaS Integration LLC, an IBM Company 2024 */
/** The message identifies the specifications */
export interface Specification {
    kind?: string | undefined;
    /** common metadata to identify a specific asset in the files */
    metadata?: Metadata | undefined;
    spec?: Path | undefined;
    kindEnum?: Specification_KindEnums | undefined;
    apiVersion?: string | undefined;
}
/** Kind id supported for api spec */
export declare enum Specification_KindEnums {
    APISpec = "APISpec"
}
//# sourceMappingURL=ApiSpecification.d.ts.map