import { FunctionalComponent } from '../stencil-public-runtime';
interface AnimateProps {
    visible: boolean;
    fast?: boolean;
    revealEffect?: string;
    concealEffect?: string;
    hiddenCallback: () => void;
}
declare const Animate: FunctionalComponent<AnimateProps>;
export default Animate;
