type AnyRecord = Record; /** Data that can be formatted */ export type FormattableData = AnyRecord | AnyRecord[] | string | null | undefined; /** * Format structured data as a table, dispatching on entity type. */ export declare function formatAsTable(data: FormattableData, entityType?: string, options?: { parentEntityId?: string; }): string; export {}; //# sourceMappingURL=table.d.ts.map