import type { ComponentType, ReactNode } from 'react';
type WithChildrenProps = {
    children?: ReactNode;
};
declare function withChildren<T>(Component: ComponentType<T>): ComponentType<T & WithChildrenProps>;
export default withChildren;
