import React from "react"; import { CSSObject } from "create-emotion"; import { IComponent, TAnimation } from "../types"; interface ModalProps extends IComponent { component: React.ReactChild; path: string; home: boolean; animation: TAnimation; } declare const Modal: React.StatelessComponent export default Modal