import { Row } from './row'; declare class RowRegistry { private rows; get: (name: string) => Row | undefined; getAll: () => Row[]; createOrGet: (name: string, weight: number) => Row; remove: (name: string) => void; } export declare const Rows: RowRegistry; export {}; //# sourceMappingURL=rows.d.ts.map