import React from 'react';
interface IDecoyProps {
    active?: boolean;
    as?: keyof JSX.IntrinsicElements;
    children: React.ReactNode;
}
export declare function Decoy({ active, as, children }: IDecoyProps): React.ReactElement<{
    children: React.ReactNode;
    ref: React.MutableRefObject<undefined>;
}, string | ((props: any, deprecatedLegacyContext?: any) => React.ReactElement<any, any> | null) | (new (props: any, deprecatedLegacyContext?: any) => React.Component<any, any, any>)>;
export {};
