import type { ReadonlyBinding } from '../binding/types/readonly-binding'; export interface ConstBindingArgs { /** A technical, but human-readable ID, which isn't guaranteed to be unique */ id: string; } /** Makes a const binding without using any React contexts. */ export declare const makeConstBinding: (value: GetT, { id }: ConstBindingArgs) => ReadonlyBinding; /** Use for cases where a binding is required in an interface but the underlying value is constant with respect to a single render */ export declare const useConstBinding: (value: GetT, { id }: ConstBindingArgs) => ReadonlyBinding; //# sourceMappingURL=const-binding.d.ts.map