import { TableCellStyle, TableRow } from "../models";
export declare const createTableRow: (type: string, total: string | number, options?: {
    style?: TableCellStyle;
    isSubtle?: boolean;
    weight?: "Bolder";
}) => TableRow;
