declare function makeID(length: number): string; declare function makeNumber(length: number): number; declare function randomizeHours(): { sunday: { isClosed: boolean; openIntervals: { start: string; end: string; }[]; }; monday: { isClosed: boolean; openIntervals: { start: string; end: string; }[]; }; tuesday: { isClosed: boolean; openIntervals: { start: string; end: string; }[]; }; wednesday: { isClosed: boolean; openIntervals: { start: string; end: string; }[]; }; thursday: { isClosed: boolean; openIntervals: { start: string; end: string; }[]; }; friday: { isClosed: boolean; openIntervals: { start: string; end: string; }[]; }; saturday: { isClosed: boolean; openIntervals: { start: string; end: string; }[]; }; }; declare function randomize(v: Record): any; declare function flattenObj(input: Record, parentKey?: string): Record; declare function getDOMNodeAddress(node: Node, addressIndices?: Array): string; export { makeID, makeNumber, randomizeHours, randomize, flattenObj, getDOMNodeAddress, };