import { SvelteComponentTyped } from "svelte"; import type { Color } from '../../unocss'; declare const __propDef: { props: { icon?: `i-tabler-${string}` | undefined; count?: number | undefined; color?: Color | undefined; title?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type AttestationIconProps = typeof __propDef.props; export type AttestationIconEvents = typeof __propDef.events; export type AttestationIconSlots = typeof __propDef.slots; export default class AttestationIcon extends SvelteComponentTyped { } export {};