import { FC, PropsWithChildren } from 'react';
interface ConditionalWrapperInterface {
    initialWrapper: any;
    condition: boolean;
    wrapper: any;
}
export declare const ConditionalWrapper: FC<PropsWithChildren<ConditionalWrapperInterface>>;
export {};
