import { TableColumn } from '../Table.desc';
export declare const FITNESS_COLUMNS: TableColumn[];
export declare const FITNESS_DATA: {
    id: string;
    name: string;
    calories: number;
    fat: number;
    carbs: number;
    protein: number;
}[];
export declare const PERSON_COLUMNS: TableColumn[];
export declare const PERSON_DATA: {
    avatar: string;
    age: number;
    birthday: number;
    stars: number;
    name: string;
    description: string;
}[];
export declare const OBJECT_PERSON_COLUMNS: TableColumn[];
export declare const OBJECT_PERSON_DATA: {
    name: string;
    static: {
        stars: number;
    };
    address: {
        city: string;
    };
}[];
//# sourceMappingURL=Table.mocks.d.ts.map