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