import type { ToolDefinition } from '../../types/tools.js'; export declare const PROFILE_TOOL_SCHEMA: ToolDefinition; export interface ProfileToolInput { readonly action: 'record_trip' | 'record_date' | 'set_field' | 'note' | 'list' | 'acknowledge_occasion'; readonly said?: string | undefined; readonly title?: string | undefined; readonly from?: string | undefined; readonly to?: string | undefined; readonly destination?: string | undefined; readonly away?: boolean | undefined; readonly details?: readonly string[] | undefined; readonly date?: string | undefined; readonly kind?: string | undefined; readonly person?: string | undefined; readonly self?: boolean | undefined; readonly occasionId?: string | undefined; readonly occurrence?: string | undefined; readonly recurrence?: string | undefined; readonly leadDays?: number | undefined; readonly fieldId?: string | undefined; readonly value?: string | undefined; readonly section?: string | undefined; readonly text?: string | undefined; } //# sourceMappingURL=schema.d.ts.map