export declare const useToolArgsFieldStatus: (fieldPath: (string | number)[]) => {
    readonly type: "running";
} | {
    readonly type: "complete";
} | {
    readonly type: "incomplete";
    readonly reason: "cancelled" | "length" | "content-filter" | "other" | "error";
    readonly error?: unknown;
} | {
    type: string;
};
//# sourceMappingURL=useToolArgsFieldStatus.d.ts.map