import { FC, ReactChild } from 'react';
export interface IProps {
    onEnter?: () => void;
    onLeave?: () => void;
    threshold?: number;
    rootMargin?: string | number;
    children?: ReactChild;
}
export declare const ReactSign: FC<IProps>;
export default ReactSign;
