import * as React from 'react';
type Props = {
    children: React.ReactElement<Record<string, unknown>>;
    visible: boolean;
    duration?: number;
};
export declare function FadeTransition(props: Props): import("react/jsx-runtime").JSX.Element;
export {};
