import React from 'react';
interface WindowBodyProps {
    children: React.ReactNode;
}
declare const WindowBody: ({ children }: WindowBodyProps) => React.JSX.Element;
export default WindowBody;
