import { SkyComponentHarness } from '@skyux/core/testing';
/**
 * Harness for interacting with a key info value component in tests.
 * @internal
 */
export declare class SkyKeyInfoValueHarness extends SkyComponentHarness {
    /**
     * @internal
     */
    static hostSelector: string;
    /**
     * Gets the text value of the component content.
     */
    getText(): Promise<string>;
}
