import type { TelaAgentInputVariable } from '../types/schemas/integrations/tela-agent-api.js'; export type AgentInputPendingFile = { inputName?: string | null; }; export type AgentInputReadiness = { ready: boolean; missingRequiredInputs: boolean; hasUnmappedFiles: boolean; }; export declare function getAgentInputReadiness(options: { inputVariables: readonly TelaAgentInputVariable[]; inputTexts: Record; files: readonly AgentInputPendingFile[]; }): AgentInputReadiness;