/// import { BoxProps } from "../../components/Box"; export interface ModalTheme { background: string; } export type Handler = () => void; export interface InjectedProps { onDismiss?: Handler; mode?: string; } export interface ModalWrapperProps extends InjectedProps, Omit { } export interface ModalProps extends ModalWrapperProps { title: React.ReactNode; hideCloseButton?: boolean; onBack?: () => void; bodyPadding?: string; headerBackground?: string; }