import type { Lazy, LambdaSource, TextureSource, VectorLike } from '@use-gpu/core'; import type { ShaderModule, ShaderSource } from '@use-gpu/shader'; export declare const useTextureAccess: (texture: TextureSource, level?: Lazy | ShaderModule | null | string, index?: Lazy | ShaderModule | null | string) => LambdaSource; export declare const getTextureAccess: (texture: TextureSource, level?: Lazy | ShaderModule | null | string, index?: Lazy | ShaderModule | null | string) => LambdaSource; export declare const useTextureUVToXY: (texture: ShaderSource, size?: Lazy, offset?: Lazy) => LambdaSource; export declare const getTextureUVToXY: (texture: ShaderSource, size?: Lazy, offset?: Lazy) => LambdaSource;