import { ReactElement, ReactNode, PropsWithChildren } from 'react';
interface ConditionalWrapperProps {
    condition: boolean;
    wrapper: (c: ReactElement | ReactNode) => ReactElement | ReactNode | JSX.Element;
}
export declare function ConditionalWrapper({ condition, wrapper, children, }: PropsWithChildren<ConditionalWrapperProps>): string | number | boolean | Iterable<ReactNode> | JSX.Element | null | undefined;
export {};
