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