/// import PropTypes from 'prop-types'; export declare const Statuses: { readonly PASSED: "passed"; readonly FAILED: "failed"; readonly BLOCKED: "blocked"; readonly ONHOLD: "onhold"; readonly NOTRUN: "notrun"; }; export declare const QAIcon: { ({ color, status }: { color?: string; status?: "passed" | "failed" | "blocked" | "onhold" | "notrun"; }): JSX.Element; category: string; propTypes: { status: PropTypes.Validator; color: PropTypes.Requireable; }; Statuses: { readonly PASSED: "passed"; readonly FAILED: "failed"; readonly BLOCKED: "blocked"; readonly ONHOLD: "onhold"; readonly NOTRUN: "notrun"; }; };