import { RevealProps } from '../Reveal'; type ZoomDirection = "down" | "left" | "right" | "up"; export interface ZoomProps extends Omit { /** * Origin of the animation. * @default undefined */ direction?: ZoomDirection; /** * Specifies if the animation should make element(s) disappear. * @default false */ reverse?: boolean; } export declare const Zoom: React.FC; export {};