import React from 'react';
export interface FlipTargetProps {
    /** Target element */
    children: React.ReactNode;
    /** Key of the prop that should be used to get element ref */
    refProp?: string;
}
export declare function FlipTarget(props: FlipTargetProps): React.JSX.Element;
export declare namespace FlipTarget {
    var displayName: string;
}
