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