import { SvelteComponent } from "svelte"; import type { Rotation } from "../types.js"; declare const __propDef: { props: { rotation?: Rotation; size?: number; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type ChevronUpDownIconProps = typeof __propDef.props; export type ChevronUpDownIconEvents = typeof __propDef.events; export type ChevronUpDownIconSlots = typeof __propDef.slots; /** [See Docs](https://geist-ui-svelte.dev/components/icons?icon=chevronupdown) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new) */ export default class ChevronUpDownIcon extends SvelteComponent { } export {};