import React, { ReactNode } from "react";
export interface ParallaxBoxProps {
    children: string | number | JSX.Element | JSX.Element[] | ReactNode;
    depth?: number;
}
declare const ParallaxBox: React.FC<ParallaxBoxProps>;
export default ParallaxBox;
