import type { CSSProperties } from 'react';
import type { AgentData } from '../../sdk-types';
export interface AgentHeaderProps {
    agent: AgentData | null;
    subtitle?: string;
    showStatus?: boolean;
    onReset?: () => void;
    style?: CSSProperties;
}
export declare function AgentHeader({ agent, subtitle, showStatus, onReset, style }: AgentHeaderProps): import("react/jsx-runtime").JSX.Element;
