export declare enum IndexerType {
    private = 0,
    public = 1
}
export declare class TorznabIndexerModel {
    private _id;
    private _configured;
    private _title;
    private _description;
    private _link;
    private _language;
    private _type;
    constructor(_id: string, _configured: boolean, _title: string, _description: string, _link: string, _language: string, _type: IndexerType);
    get id(): string;
    get configured(): boolean;
    get title(): string;
    get description(): string;
    get link(): string;
    get language(): string;
    get type(): IndexerType;
    static fromJson(data: any): TorznabIndexerModel;
}
