import React, { JSX } from 'react'; export interface GrepDialogOptions { title: string; content: React.ReactNode; actions?: JSX.Element[]; closeBtnText?: string; } interface Props extends GrepDialogOptions { open: boolean; onClose: VoidFunction; } export declare const GrepDialog: React.FC; export {};