import { CommandTypesBase } from "../types/command.mjs"; //#region src/extension/stdin.d.ts /** * Extension that reads stdin data into the argument field specified by `meta.stdin`. * Included by default via `createPadrone()`. * * Read mode is inferred from the schema type: * - `string` field → reads all stdin as a single string * - `string[]` field → reads stdin line-by-line into an array * - `AsyncIterable` field → returns a stream for line-by-line async consumption * * Stdin is only read when piped (not a TTY) and the field wasn't already provided via CLI flags. */ declare function padroneStdin(options?: { disabled?: boolean; }): (builder: T) => T; //#endregion export { padroneStdin }; //# sourceMappingURL=stdin.d.mts.map