///
import type { IPipeline, IPipelineTag } from '../../../domain';
import type { IFormInputProps } from '../../../presentation';
export interface IMetadataPageContentProps {
pipeline: IPipeline;
updatePipelineConfig: (changes: Partial) => void;
}
export interface ITagsInput extends IFormInputProps {
value?: IPipelineTag[];
}
export declare function MetadataPage(props: IMetadataPageContentProps): JSX.Element;
export declare const MetadataPageContent: typeof MetadataPage;