import './index.scss'; export interface PromptProps extends React.HTMLAttributes { /** * Render custom MDX content without copy or collapse behavior. * @default false */ custom?: boolean; /** * Inline description rendered in the prompt header. */ description?: string; /** * Header label for the prompt block. * @default 'Agent Prompt' */ title?: string; /** * Eyebrow label shown above the title. * @default 'For your Agent' */ eyebrow?: string; /** * Controls the initial folded state. * @default true */ defaultCollapsed?: boolean; /** * The prompt text to display and copy. */ prompt?: string; } export declare function Prompt({ custom, ...props }: PromptProps): import("react/jsx-runtime").JSX.Element; export default Prompt;