import type { Annotation } from '../../types'; export type DemoAnnotation = { selector: string; comment: string; selectedText?: string; }; export type PageFeedbackToolbarCSSProps = { demoAnnotations?: DemoAnnotation[]; demoDelay?: number; enableDemoMode?: boolean; onAnnotationAdd?: (annotation: Annotation) => void; onAnnotationDelete?: (annotation: Annotation) => void; onAnnotationUpdate?: (annotation: Annotation) => void; onAnnotationsClear?: (annotations: Annotation[]) => void; onCopy?: (markdown: string) => void; onSubmit?: (output: string, annotations: Annotation[]) => void; copyToClipboard?: boolean; endpoint?: string; sessionId?: string; onSessionCreated?: (sessionId: string) => void; webhookUrl?: string; }; declare const PageToolbar: import("svelte").Component; type PageToolbar = ReturnType; export default PageToolbar; //# sourceMappingURL=PageToolbar.svelte.d.ts.map