import { Translation } from "./types"; import { SourceFile } from "./sourceFiles"; export declare type MakeResult = { T: { [sourceId: string]: { [key: string]: Translation; }; }; FnDecl: string; FnName: string; FnTypeId: string; }; export declare function makeT8(files: SourceFile[], opts: GenerateOptions): Promise; declare type GenerateOptions = { allowUnspecifiedModules: boolean; allowKeyPlaceholders: boolean; declarationsOnly: boolean; languages: string[]; fnName: string; fnTypeId: string; }; export {};