import { SvelteComponent } from "svelte"; declare const __propDef: { props: { /** The width of the ripple surface. */ width?: any; /** The height of the ripple surface. */ height?: any; /** The minimum size of each ripple. */ sizeMin?: number; /** The maximum size of each ripple. */ sizeMax?: number; /** The minimum opacity of each ripple. */ opacityIn?: number; /** The maximum opacity of each ripple. */ opacityOut?: number; /** The minimum duration of each ripple. */ durationMin?: number; /** The maximum duration of each ripple. */ durationMax?: number; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type RippleProps = typeof __propDef.props; export type RippleEvents = typeof __propDef.events; export type RippleSlots = typeof __propDef.slots; export default class Ripple extends SvelteComponent { } export {};