import type { NormalizedBundlerI18nOptions } from "../../src/types.d.ts"; import type { ResolvedI18nFolder } from "./validate.js"; type I18nTransformResult = { contents: string; folder: ResolvedI18nFolder; }; type I18nFolderResolver = (args: { callerPath: string; i18n: NormalizedBundlerI18nOptions; rootDir: string; }) => Promise; declare function transformLocalTranslators(args: { callerPath: string; i18n: NormalizedBundlerI18nOptions; resolveFolder?: I18nFolderResolver; rootDir: string; source: string; }): Promise; declare function findLocalTranslatorBindings(source: string): string[]; export { findLocalTranslatorBindings, transformLocalTranslators, }; export type { I18nTransformResult, }; //# sourceMappingURL=transform.d.ts.map