import { HTTPMethod } from "../../interfaces";
import { Dereferencer, IStateInput, Operation, Paths } from "../interfaces";
export interface IStateUpdate {
    stateInput: IStateInput;
    paths: Paths;
    dereferencer: Dereferencer;
    serviceName: string;
    schemaEndpoint: string;
}
export interface IOperationForStateUpdate {
    endpoint: string;
    method: HTTPMethod;
    operation: Operation;
}
export declare type OperationsForStateUpdate = IOperationForStateUpdate[];
export interface IValidationError {
    msg: string;
    nestedLevel: number;
}
//# sourceMappingURL=interfaces.d.ts.map