/** @typedef {typeof __propDef.props} SidebarOpenProps */ /** @typedef {typeof __propDef.events} SidebarOpenEvents */ /** @typedef {typeof __propDef.slots} SidebarOpenSlots */ export default class SidebarOpen extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type SidebarOpenProps = typeof __propDef.props; export type SidebarOpenEvents = typeof __propDef.events; export type SidebarOpenSlots = 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 {};