export declare const mergeObj: (one: T, two: T) => T; export declare const contentBetween: (data: string, start: string, end: string) => string; export declare const contentBetweenEnds: (data: string, start: string, ends: [string, string][]) => string; export declare const parseQueryString: (data: string) => Record; export declare const parseNumberOr: (data: string | undefined | null, def: number) => number; export declare const requireOrThrow: (moduleName: string) => T; export declare const isModuleInstalled: (moduleName: string) => boolean;