/** @typedef {typeof __propDef.props} SortDownProps */ /** @typedef {typeof __propDef.events} SortDownEvents */ /** @typedef {typeof __propDef.slots} SortDownSlots */ export default class SortDown extends SvelteComponentTyped<{ style: any; width?: number; height?: number; class?: string; }, { click: MouseEvent; } & { [evt: string]: CustomEvent; }, {}> { } export type SortDownProps = typeof __propDef.props; export type SortDownEvents = typeof __propDef.events; export type SortDownSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { style: any; width?: number; height?: number; class?: string; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export {};