/** @typedef {typeof __propDef.props} IdCardProps */ /** @typedef {typeof __propDef.events} IdCardEvents */ /** @typedef {typeof __propDef.slots} IdCardSlots */ export default class IdCard extends SvelteComponentTyped< { [x: string]: any }, { [evt: string]: CustomEvent }, {} > {} export type IdCardProps = typeof __propDef.props export type IdCardEvents = typeof __propDef.events export type IdCardSlots = typeof __propDef.slots import { SvelteComponentTyped } from 'svelte' declare const __propDef: { props: { [x: string]: any } events: { [evt: string]: CustomEvent } slots: {} } export {}