import { ReactNode } from 'react'; interface LayoutProps { children: ReactNode; width?: { desktop: number | string; }; maxHeight?: { desktop: number | string; }; } export declare const WidgetContainer: (props: LayoutProps) => JSX.Element; export {};