import React from 'react'; type Props = { routingKey: string; showDialog: boolean; handleDialog: () => void; onIncidentCreated: () => void; }; export declare const TriggerDialog: ({ routingKey, showDialog, handleDialog, onIncidentCreated: onIncidentCreated, }: Props) => React.JSX.Element; export {};