import { ShallowRef } from 'vue'; export type RippleInstance = { id: string; left: string; top: string; animationEnded: boolean; }; export declare const useRipple: (container: Readonly | null>>) => { isPointerDown: import('vue').Ref; ripples: import('vue').Reactive>; startRipple: (event: MouseEvent) => string | undefined; hideRipples: () => void; hideRipple: (el: Pick) => void; events: import('vue').Ref void>, Record void>>; };