import { SvelteComponent } from "svelte"; declare const __propDef: { props: Record; events: { [evt: string]: CustomEvent; }; slots: {}; exports?: {} | undefined; bindings?: string | undefined; }; export type ListCheckmarkIconProps = typeof __propDef.props; export type ListCheckmarkIconEvents = typeof __propDef.events; export type ListCheckmarkIconSlots = typeof __propDef.slots; export default class ListCheckmarkIcon extends SvelteComponent { } export {};