import React from 'react'; import { CommonStyledProps } from '../types'; declare type WindowProps = { children?: React.ReactNode; resizable?: boolean; resizeRef?: React.Ref; shadow?: boolean; } & React.HTMLAttributes & CommonStyledProps; declare const Window: React.ForwardRefExoticComponent<{ children?: React.ReactNode; resizable?: boolean | undefined; resizeRef?: React.Ref | undefined; shadow?: boolean | undefined; } & React.HTMLAttributes & CommonStyledProps & React.RefAttributes>; export * from './WindowContent'; export * from './WindowHeader'; export { Window, WindowProps }; //# sourceMappingURL=Window.d.ts.map