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