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