/// <reference types="react" />
export declare type Props = {
    condition: boolean;
    wrapper: (children: JSX.Element | JSX.Element[]) => JSX.Element;
    children: JSX.Element | JSX.Element[];
};
export declare function ConditionalWrapper({ condition, wrapper, children }: Props): JSX.Element;
