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