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