type Props = { /** Image URL to display */ src: string | null | undefined; alt?: string; /** Show a decorative gradient ring around the image */ ring?: boolean; on?: { click: () => void; }; }; /** * A circular image avatar built on top of `ImageRounded`, forcing 50% border-radius on all layers. * * ### CSS Custom Properties * | Property | Description | Default | * |---|---|---| * | `--sc-kit--image--round--size` | Diameter of the circle | `100%` | */ declare const Cmp: import("svelte").Component; type Cmp = ReturnType; export default Cmp;