import { Types } from '@graphql-codegen/plugin-helpers'; export declare const lifecycleHooks: (_hooks?: Partial) => { afterStart: () => Promise; onWatchTriggered: (event: string, path: string) => Promise; onError: (error: string) => Promise; afterOneFileWrite: (path: string) => Promise; afterAllFileWrite: (paths: string[]) => Promise; beforeOneFileWrite: (path: string) => Promise; beforeAllFileWrite: (paths: string[]) => Promise; beforeDone: () => Promise; };