import type { LC, LiveElement } from '@use-gpu/live'; import type { StorageSource, TextureSource, TypedArray } from '@use-gpu/core'; export type ReadbackProps = { source?: StorageSource | TextureSource; sources?: (StorageSource | TextureSource)[]; then?: (...data: TypedArray[]) => LiveElement; buffers?: number; once?: boolean; shouldDispatch?: () => boolean | number | undefined; onDispatch?: () => void; }; export declare const Readback: LC;