export interface TdOverlayProps {
    backgroundColor?: string;
    customStyle?: string;
    duration?: number;
    preventScrollThrough?: boolean;
    visible?: boolean;
    zIndex?: number;
    onClick?: (context: {
        e: MouseEvent;
    }) => void;
}
