/**
 * Resolvers for ProcessSpecification fields
 *
 * @package: HoloREA
 * @since:   2022-07-11
 */
import { DNAIdMappings, VfModule, AddressableIdentifier } from '../types.js';
import { ProcessSpecification } from '@valueflows/vf-graphql';
declare const _default: (enabledVFModules: VfModule[] | undefined, dnaConfig: DNAIdMappings, conductorUri: string) => ({
    resourcesCurrentlyAtStage: () => never;
} | {
    resourcesCurrentlyAtStage?: undefined;
}) & ({
    commitmentsRequiringStage: () => never;
} | {
    commitmentsRequiringStage?: undefined;
}) & ({
    conformingProcesses: () => never;
} | {
    conformingProcesses?: undefined;
}) & ({
    revision: (record: ProcessSpecification, args: {
        revisionId: AddressableIdentifier;
    }) => Promise<ProcessSpecification>;
} | {
    revision?: undefined;
});
export default _default;
