import * as React from 'react'; export declare type ParallaxProps = { children?: React.ReactNode; }; export declare class Parallax extends React.PureComponent { scene: HTMLDivElement | null; parallax: { disable(): void; }; componentDidMount(): void; componentWillUnmount(): void; static Layer: ({ depth, children, ...rest }: React.HTMLAttributes & { depth: number; }) => JSX.Element; render(): JSX.Element; }