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