/** * @description * Converts typescript functions to CLI. * @CLI */ export declare function fnToCLI(_: { /** * @description * Path to `tsconfig.json`. * @default "./tsconfig.json" * @flag t */ pathToTsconfig?: string; /** * @description * Path to `package.json`. * @default "./package.json" * @flag p */ pathToPackageJson?: string; /** * @description * For one command CLI, it is optional to write the command name when using the CLI. Give `true` to disable that. * @default false * @flag s */ strict?: boolean; /** * @description * Changes the paths to non node module paths for the functions that are imported from fn-to-cli node package. * Useful only when generating the CLI of fn-to-cli. * @default false * @cliPrivate */ development?: boolean; }): void;