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