import { Options } from "./types.mjs"; //#region src/input.d.ts /** * Reads the specification from an Unstorage driver. * * @see https://unstorage.unjs.io/drivers * @see https://github.com/unjs/unstorage * * @param options - The options for the input. * @returns The specification. */ declare function input(options: Options): Promise; //#endregion export { input }; //# sourceMappingURL=input.d.mts.map