/// <reference types="react" />
export interface FlipProps {
    /**
     * The orientation of the flip
     * @default bottomToTop
     */
    direction?: 'bottomToTop' | 'topToBottom';
    children: React.ReactNode;
}
/**
 * A component that flips the direction of the children element
 */
export declare const Flip: (props: FlipProps) => import("react/jsx-runtime").JSX.Element;
