import { SvelteComponentTyped } from "svelte"; export interface CheckMarkIconProps { svgAttrs?: SVGProps; } import { SVGProps } from "../types"; declare const __propDef: { props: { svgAttrs?: CheckMarkIconProps["svgAttrs"]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; type CheckMarkIconProps_ = typeof __propDef.props; export type CheckMarkIconEvents = typeof __propDef.events; export type CheckMarkIconSlots = typeof __propDef.slots; export default class CheckMarkIcon extends SvelteComponentTyped { } export {};