import * as React from 'react'; export interface IOverlayProps { children: React.ReactNode; className?: string; style?: object; isLight?: boolean; onClick?: (e: any) => void; }