import type Row from "../types/Row"; /** * Structural typing bridge: domain row interfaces often do not assign to {@link Row}[] * because `Row` uses an index signature. Use when passing typed data to `rows` and * similar APIs. */ export declare function asRows(rows: readonly T[]): Row[];