declare const version: string;
interface Opts {
  msg: string;
  optsVarName: string;
}
declare const defaults: Opts;
declare function arrObjOrBoth(
  str: string,
  opts?: Partial<Opts>,
): "array" | "object" | "any";

export { type Opts, arrObjOrBoth, defaults, version };
