import { ReactNode } from 'react'; import { ResultEntity } from "../../types/store"; import { HtmlReporterValues } from "../../../../plugin-api"; import { ReporterConfig } from "../../../../types"; export interface MetaInfoProps { resultId: string; qa?: string; } interface MetaInfoInternalProps extends MetaInfoProps { result: ResultEntity; testName: string; metaInfoBaseUrls: ReporterConfig['metaInfoBaseUrls']; apiValues: Pick; baseHost: string; } declare function MetaInfoInternal(props: MetaInfoInternalProps): ReactNode; export declare const MetaInfo: import("react-redux").ConnectedComponent & MetaInfoProps>; export {};