import { App } from '@jill64/ts-cli'; export declare const cmd: App<{ args: [string, string][]; }, ({ args: { source, dist } }: { args: Record; }) => Promise, Record; }>>; export declare const build: ( /** * The source file to build * @example 'src/index.ts' */ source: string, /** * The destination file to build to (must be a .js file) * @example 'dist/index.js' */ dist: string) => import("@jill64/ts-cli/types").InvokeHandlerReturn<{ args: [string, string][]; }>;