import React from 'react'; export interface ModalProps { isShowing: boolean; toggle: () => void; padding?: number; isDismissable?: boolean; children?: React.ReactNode; } export declare const Modal: React.ForwardRefExoticComponent>;