* Content slides in from left
*
*/
import * as React from "react";
import { type SaasflareComponentProps } from "../../providers";
/** Motion event overrides that conflict with React HTML events. */
type MotionConflicts = "onDrag" | "onDragStart" | "onDragEnd" | "onAnimationStart" | "onAnimationEnd";
/** Direction the element slides in from. */
type RevealDirection = "up" | "down" | "left" | "right" | "none";
/** Props for the RevealOnScroll component. */
export interface RevealOnScrollProps extends Omit