interface ServerToolRunningProps { status: "running"; name: string; input: unknown; startedAt: number; animateUntil?: number; marginTop?: number; } interface ServerToolDoneProps { status: "done"; name: string; input: unknown; durationMs: number; resultType?: string; marginTop?: number; } type ServerToolExecutionProps = ServerToolRunningProps | ServerToolDoneProps; export declare function ServerToolExecution(props: ServerToolExecutionProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ServerToolExecution.d.ts.map