import type { OID } from '../types.js';
export declare class BindParam {
    oid: OID;
    value: any;
    constructor(oid: OID, value: any);
}
