import React, { FC } from 'react'; export type IParallax = { height: number | string; children?: React.ReactNode; className?: string; style?: React.CSSProperties; }; export type IParallaxLayer = { /** 视察图层深度 */ deep: number; /** 禁用浮动方向 */ disabledDirection?: 'x' | 'y'; className?: string; /** 背景图 */ bg?: string; cover?: boolean; children?: React.ReactNode; style?: React.CSSProperties; }; declare const Parallax: FC & { Layer: FC }; export { Parallax };