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