import type { ReactNode } from "react"; interface AgentTabFrameProps { title: string; description: string; helpHref?: string; helpLabel?: string; actions?: ReactNode; children: ReactNode; className?: string; } /** Shared settings surface for Manage agent page tabs. */ export declare function AgentTabFrame({ title, description, helpHref, helpLabel, actions, children, className, }: AgentTabFrameProps): import("react").JSX.Element; export {}; //# sourceMappingURL=AgentTabFrame.d.ts.map