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