import * as React from 'react'; interface Props { mode?: 'outer' | 'inner'; amount?: 'small' | 'normal'; direction?: 'left' | 'right' | 'top' | 'bottom'; } declare const Parallax: React.FC; export default Parallax;