/** @typedef {typeof __propDef.props} RippleProps */ /** @typedef {typeof __propDef.events} RippleEvents */ /** @typedef {typeof __propDef.slots} RippleSlots */ export default class Ripple extends SvelteComponentTyped<{ color?: string; center?: boolean; circle?: boolean; }, { [evt: string]: CustomEvent; }, {}> { } export type RippleProps = typeof __propDef.props; export type RippleEvents = typeof __propDef.events; export type RippleSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { color?: string; center?: boolean; circle?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};