import React from 'react'; import { SectionSpecificProps } from '../Section'; import { SurfaceProps } from '../Surface'; import { ScrollablePropVal, ViewProps } from '../View/types'; export declare type SimpleModalProps = SectionSpecificProps & SurfaceProps & { open?: boolean; onChangeOpen?: (next: boolean) => any; closable?: boolean; scrollable?: ScrollablePropVal; }; export declare type ModalProps = SimpleModalProps & { onClickBackground?: React.MouseEventHandler; backgroundProps?: ViewProps; children?: React.ReactNode; chromeless?: boolean; }; export declare const Modal: React.MemoExoticComponent<({ backgroundProps, onClickBackground, background, children, chromeless, ...props }: ModalProps) => JSX.Element>; //# sourceMappingURL=Modal.d.ts.map