import type { NodePath } from '@babel/traverse'; import type * as t from '@babel/types'; export interface StringArray { path: NodePath; references: NodePath[]; name: string; length: number; } export declare function findStringArray(ast: t.Node): StringArray | undefined; //# sourceMappingURL=string-array.d.ts.map