import { NodePath } from '@babel/traverse'; import { Updates } from '../../../types/index.js'; /** * Validate useGT() / await getGT() calls * 1. Validates that the call does not violate the rules of React (no hooks in async functions) */ export declare function validateStringFunction(localImportName: string, path: NodePath, updates: Updates, errors: string[], file: string, originalImportName: string): void;