import type { GetInputsFromScriptsOptions, GetInputsFromScriptsPartial } from '../../types/config.ts'; import { type Input } from '../../util/input.ts'; type Options = GetInputsFromScriptsOptions & { getInputsFromScripts: GetInputsFromScriptsPartial; }; export declare const getInputsFromMiseScript: (script: string, options: Options, hasLocalBinPath: boolean) => Input[]; export {};