import type { StorageSource, UniformType, TensorArray, TypedArray } from '@use-gpu/core'; type RawSourceOptions = { flags?: GPUFlagsConstant; readWrite?: boolean; live?: boolean; }; export declare const useRawSource: (array: TypedArray, format: UniformType, options?: RawSourceOptions, size?: number[], version?: number) => StorageSource; export declare const useNoRawSource: () => void; export declare const useRawTensorSource: (data: TensorArray, options?: RawSourceOptions) => StorageSource; export declare const useNoRawTensorSource: () => void; export {};