import { Binding } from "../../types/properties/value.js"; import { GenBinding } from "./types.js"; export declare function intToBin(input: string): { ret: `#${string}`; bindings: GenBinding[]; }; export declare function binToInt(input: Binding): { ret: `#${string}`; bindings: GenBinding[]; };