import type { SourceFile, Identifier } from 'ts-morph'; /** Finds hook identifier created by the context with the given name */ export declare const findHookIdentifierByContextName: (sourceFile: SourceFile, contextName: string) => Identifier | undefined;