export interface IModalProps { ["data-testid"]?: string; className?: string; isCentered?: boolean; isCloseOnEscapeKey?: boolean; isFocusOnFirstFocusableEl?: boolean; isRelative?: boolean; isScrollable?: boolean; onClose: () => void; size?: "xl" | "lg" | "sm" | "initial"; isRightPanel?: boolean; rightPanelWidth?: string; backdrop?: boolean; }