/** * Quick Note Panel Component * * Simple UI for adding quick notes to the debug session. * * @since v1.33.2 */ interface QuickNotePanelProps { isOpen: boolean; onClose: () => void; onSubmit: (content: string) => void; } /** * Quick note panel for adding session notes */ export declare function QuickNotePanel({ isOpen, onClose, onSubmit }: QuickNotePanelProps): import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=QuickNotePanel.d.ts.map