import React from "react"; interface ContentWrapperProps { children: React.ReactNode; height?: string; width?: string; } export declare const ContentWrapper: ({ children: content, height, width, }: ContentWrapperProps) => JSX.Element; export {};