export * from "./proto"; export * from "./apiInterface"; export * from "./proto/core"; export * from "./genTsApi"; export * from "./utils"; export interface Options { files: string[]; output: string; protoDir: string; apiName: string; apiPath: string; apiPrefixPath: string; depPath: string; ignore?: RegExp; } export declare function main(options: Options): void;