import type { MaskInput } from '../../kaleidoscope/types'; export type MaskControlPanelProps = { readonly hardness: number; readonly threshold: number; readonly onChange: (mask: MaskInput) => void; readonly disabled?: boolean; /** Root for this instance's test ids; override when a screen mounts two. */ readonly testIDPrefix?: string; }; export declare function MaskControlPanel({ hardness, threshold, onChange, disabled, testIDPrefix, }: MaskControlPanelProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=mask-control-panel.d.ts.map