import * as React from 'react'; import { FocalRevealProps } from '../FocalReveal'; import { MoveProps } from '../Move'; export default class FocalRevealMove extends React.Component { static defaultProps: { duration: string; timingFunction: string; zIndex: number; useFocalTarget: boolean; transformX: boolean; transformY: boolean; childrenTransformX: boolean; childrenTransformY: boolean; }; render(): JSX.Element; }