///
import type { Application } from '../../../application';
import type { IPipeline } from '../../../domain';
export interface ITriggersProps {
application: Application;
pipeline: IPipeline;
fieldUpdated: () => void;
updatePipelineConfig: (changes: Partial) => void;
revertCount: number;
}
export declare function Triggers(props: ITriggersProps): JSX.Element;