UNPKG

@amaui/ui-react

Version:
23 lines (22 loc) 560 B
import React from 'react'; import { IFade } from '../Fade/Fade'; import { IUseVisible } from '../useVisible/useVisible'; export interface IReveal extends IFade { inDefault?: boolean; offset?: number; offsetReveal?: number; offsetUnreveal?: number; unreveal?: boolean; classes?: { in?: string; }; styles?: { in?: any; out?: any; }; onChange?: (value: boolean) => any; noTransition?: boolean; UseVisibleProps?: IUseVisible; } declare const Reveal: React.FC<IReveal>; export default Reveal;