/// import PropTypes from 'prop-types'; export declare const Types: { passed: string; failed: string; pending: string; running: string; skipped: string; warning: string; cancelled: string; }; export declare const Color: { [x: string]: string; }; export interface PipelineIconProps { color?: string; type: keyof typeof Types; } export declare const PipelineIcon: { (props: PipelineIconProps): JSX.Element; category: string; propTypes: { color: PropTypes.Requireable; type: PropTypes.Requireable; }; Types: { passed: string; failed: string; pending: string; running: string; skipped: string; warning: string; cancelled: string; }; };