import type { EditableNodeAttributes } from "../types"; type ParallaxAxis = "x" | "y"; type ParallaxDirection = "normal" | "reverse"; interface ParallaxProps extends EditableNodeAttributes { axis?: ParallaxAxis; direction?: ParallaxDirection; /** Maximum translation, in CSS pixels, at either edge of the viewport. */ distance?: number; /** Optional constant scale used to hide media edges while translating. */ scale?: number; children?: React.ReactNode; className?: string; } export declare function Parallax({ axis, direction, distance, scale, children, className, "data-node-id": dataNodeId, }: ParallaxProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Parallax.d.ts.map