/** @typedef {typeof __propDef.props} ArrowBigDownProps */ /** @typedef {typeof __propDef.events} ArrowBigDownEvents */ /** @typedef {typeof __propDef.slots} ArrowBigDownSlots */ export default class ArrowBigDown extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type ArrowBigDownProps = typeof __propDef.props; export type ArrowBigDownEvents = typeof __propDef.events; export type ArrowBigDownSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { size?: string; color?: string; strokeWidth?: string; class?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};