import type { AbstractRga, Chunk } from './AbstractRga';
/** Find the first visible chunk, if any. */
export declare const firstVis: <T>(rga: AbstractRga<T>) => Chunk<T> | undefined;
