import { TypedData } from "../../types";
export interface IRow {
    id: number;
    title: string;
}
export declare class Row extends TypedData {
    id: number;
    title: string;
    constructor(data: IRow);
}
//# sourceMappingURL=row.d.ts.map