import type { SVGAttributes } from "svelte/elements"; type IconVariant = "default" | "simple" | "tick"; interface Props extends SVGAttributes { class?: string; variant?: IconVariant; } /** * [Go to docs](https://flowbite-svelte.com/) * ## Type * Props * ## Props * @prop class: className * @prop variant = "default" * @prop ...restProps */ declare const CheckmarkIcon: import("svelte").Component; type CheckmarkIcon = ReturnType; export default CheckmarkIcon;