import { UniformAttribute, ShaderModule, ParsedBundle } from '../../types.d.mts'; export type BundleToAttribute = (bundle: ShaderModule) => UniformAttribute; export type MakeChainAccessor = (type: string, name: string, args: string[], from: string, to: string, rest?: number, length?: number) => string; export declare const makeChainTo: (makeChainAccessor: MakeChainAccessor, bundleToAttribute: BundleToAttribute) => (from: ShaderModule, to: ShaderModule) => ParsedBundle;