import * as React from 'react'; import { ModalState } from './ModalContext'; export declare const ModalTrigger: React.SFC<{ /** The React component that you would like to display inside the modal */ target: React.ReactNode; /** Style to apply to the modal itself */ modalStyles?: {}; children: (args: Partial) => React.ReactNode; }>;