import { Base, Type } from "igniteui-react-core";
/**
 * @hidden
 */
export declare class HyperlinkResult extends Base {
    static $t: Type;
    readonly a: string;
    readonly b: string;
    constructor(a: string, b: string);
    toString(): string;
}
