export declare class IdNNameRecord {
    protected id: number;
    protected name: string;
    constructor(id: number, name: string);
}
