import type { ImgCropper } from './img-cropper.svelte'; type Props = { cropper: ImgCropper; }; /** * Apply/Cancel controls for the image cropper. Renders conditionally when a crop box is active. * Can be placed anywhere in the layout. * * ### Props * | Prop | Type | Default | Description | * |---|---|---|---| * | `cropper` | `ImgCropper` | — | Cropper controller instance | * * ### CSS Custom Properties * | Property | Description | Default | * |---|---|---| * | `--sc-kit--img-cropper-controls--background` | Panel background | `transparent` | */ declare const Cmp: import("svelte").Component; type Cmp = ReturnType; export default Cmp;