export declare const isValidV4UUID: (uuid: any) => boolean; export declare const isValidV5UUID: (uuid: any) => boolean; export declare const objectify: (accum: { [key: string]: V; }, addl: { [key: string]: V; }) => { [x: string]: V; }; export declare type Without = { [P in Exclude]?: never; }; export declare type XOR = (Without & Required) | (Without & Required);