///
import { default as default_2 } from 'react';
declare type Orientation = "up" | "right" | "down" | "left" | "up left" | "up right" | "down left" | "down right";
declare const SimpleParallax: default_2.FunctionComponent;
export default SimpleParallax;
declare interface SimpleParallaxProps {
delay?: number;
orientation?: Orientation;
scale?: number;
overflow?: boolean;
transition?: string;
maxTransition?: number | null;
children?: React.ReactNode;
}
export { }