2024-08-20 23:25:37 +04:00

9 lines
237 B
TypeScript

import type { ShowWaveEffect } from './interface';
export interface WaveEffectProps {
className: string;
target: HTMLElement;
component?: string;
}
declare const showWaveEffect: ShowWaveEffect;
export default showWaveEffect;