import { ReactNode } from 'react';
export interface OutputTableListModel {
    showDivider?: boolean;
    data: {
        bottomTextPrimary?: ReactNode;
        bottomTextSecondary?: ReactNode;
        information: Array<{
            textPrimary?: ReactNode;
            textSecondary?: ReactNode;
        }>;
    };
}
