import { MetadataInterface } from "./MetadataInterface.js";
import { OptionsInterface } from "./OptionsInterface.js";
import { StageInterface } from "./StageInterface.js";
export interface ConfigInterface {
    extends?: string | string[];
    metadata?: MetadataInterface;
    options?: OptionsInterface;
    stages: StageInterface[];
    validateConfig?(config: ConfigInterface): boolean;
}
//# sourceMappingURL=ConfigInterface.d.ts.map