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<HtmlReporterValues, 'extraItems' | 'metaInfoExtenders'>;
    baseHost: string;
}
declare function MetaInfoInternal(props: MetaInfoInternalProps): ReactNode;
export declare const MetaInfo: import("react-redux").ConnectedComponent<typeof MetaInfoInternal, import("react-redux").Omit<MetaInfoInternalProps, "baseHost" | "metaInfoBaseUrls" | "result" | "apiValues" | "testName"> & MetaInfoProps>;
export {};
