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