import { PadroneSchema } from "../types/schema.mjs"; //#region src/core/results.d.ts /** * Brands a schema as async, signaling that its `validate()` may return a Promise. * When an async-branded schema is passed to `.arguments()`, `.configFile()`, or `.env()`, * the command's `parse()` and `cli()` will return Promises. */ declare function asyncSchema(schema: T): T & { '~async': true; }; //#endregion export { asyncSchema }; //# sourceMappingURL=results.d.mts.map