import { BaseAgent } from '../../agents/BaseAgent';
/**
 * Creates empty strings for all non-initialized state variables
 * referenced in agent instructions
 *
 * @param agent The root agent to process
 * @param initializedStates Optional object with already initialized states
 * @returns An object with empty strings for all non-initialized state variables
 */
export declare function createEmptyState(agent: BaseAgent, initializedStates?: Record<string, any>): Record<string, any>;
