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