import { Description } from "./Description";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class WebBaseSearchInfoDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    constructor();
    private r;
    get searchText(): string;
    set searchText(a: string);
    private k;
    get caseSensitive(): boolean;
    set caseSensitive(a: boolean);
    private l;
    get exactMatch(): boolean;
    set exactMatch(a: boolean);
    private o;
    get matchCount(): number;
    set matchCount(a: number);
    private q;
    get content(): string;
    set content(a: string);
}
