import type { Driver } from '../../types'; declare type DriverFactory = (opts?: T) => Driver; export declare function defineDriver(factory: DriverFactory): DriverFactory; export declare function isPrimitive(arg: any): boolean; export declare function stringify(arg: any): string; export {};