import { RevealProps } from '../Reveal'; type AttentionSeekerEffect = "bounce" | "flash" | "headShake" | "heartBeat" | "jello" | "pulse" | "rubberBand" | "shake" | "shakeX" | "shakeY" | "swing" | "tada" | "wobble"; export interface AttentionSeekerProps extends Omit { /** * The animation effect to use for this attention seeker. * @default "bounce" */ effect?: AttentionSeekerEffect; } export declare const AttentionSeeker: React.FC; export {};