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 ListIconProps = typeof __propDef.props; export type ListIconEvents = typeof __propDef.events; export type ListIconSlots = typeof __propDef.slots; export default class ListIcon extends SvelteComponent { } export {};