import * as React from "react"; import type { PerseusScore, ShowSolutions } from "@khanacademy/perseus-core"; type DebugCheckAnswerFooterProps = { score: PerseusScore | undefined; showSolutions: ShowSolutions; popover: { isOpen: boolean; setOpen: (open: boolean) => void; }; actions: { reset: () => void; skip: () => void; check: () => void; }; }; /** * A component that renders the debug check answer footer for Perseus items */ export declare const DebugCheckAnswerFooter: ({ score, showSolutions, popover, actions, }: DebugCheckAnswerFooterProps) => React.ReactElement; export {};