import type { ImageProps } from "../../types/components/image";
interface ClipPathProps {
    shape: ImageProps["mask_shape"];
    width: number;
    height: number;
}
declare const ClipPath: import("svelte").Component<ClipPathProps, {}, "">;
type ClipPath = ReturnType<typeof ClipPath>;
export default ClipPath;
