/** @typedef {typeof __propDef.props} RippleProps */ /** @typedef {typeof __propDef.events} RippleEvents */ /** @typedef {typeof __propDef.slots} RippleSlots */ export default class Ripple extends SvelteComponentTyped<{ center?: boolean | undefined; color?: string | undefined; circle?: boolean | undefined; }, { [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: { center?: boolean | undefined; color?: string | undefined; circle?: boolean | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};