export interface TableStatus {
    label: string;
    value: string;
}
export interface TableChildBase {
    id: string;
    text1: string;
    text2: string;
    text3: string;
    text4: string;
    icon: string;
    status: TableStatus;
}
export interface TableChildRow extends TableChildBase {
    typeCol: string;
}
export interface TableRow extends TableChildBase {
    type?: 'accordion';
    children?: TableChildRow[];
}
export declare const tableData: TableRow[];
