import React from 'react'; import { CommonStyledProps } from '../types'; declare type WindowContentProps = { children?: React.ReactNode; } & React.HTMLAttributes & CommonStyledProps; declare const WindowContent: React.ForwardRefExoticComponent<{ children?: React.ReactNode; } & React.HTMLAttributes & CommonStyledProps & React.RefAttributes>; export { WindowContent, WindowContentProps }; //# sourceMappingURL=WindowContent.d.ts.map