type $$ComponentProps = { /** The current page path, passed to the callback so it can attribute votes. */ path: string; /** Called once per page when the reader votes; wire it to your analytics. */ onfeedback?: (vote: 'up' | 'down', path: string) => void; /** "Edit this page" target — offered after a "No" vote when present. */ editHref?: string; /** "Open an issue" target — offered after a "No" vote when present. */ issueHref?: string; }; declare const PageFeedback: import("svelte").Component<$$ComponentProps, {}, "">; type PageFeedback = ReturnType; export default PageFeedback;