import type { EditAction, ToolProviderProps } from "../../types.js"; import { type RedactToolState } from "./useRedactTool.js"; interface RedactContextValue extends RedactToolState { imageUrl: string; onApply: (blob: Blob, actions: EditAction[]) => void; onCancel: () => void; } export declare function RedactProvider({ imageUrl, onApply, onCancel, children }: ToolProviderProps): import("react").JSX.Element; export declare function useRedactContext(): RedactContextValue; export {};