import type { GridItem, Width } from './grid.util'; export declare type WidthTable = Record; export interface SizeOptions { widthTable?: WidthTable; } /** * * @param iterator * @param options */ export declare function gridSize(iterator: Iterable | T>, options?: SizeOptions): Generator, void, unknown>;