/** * Validator function which checks the input is * a valid UID (eg, series instance UID). * @param input The input string. * @param strict If false, nonstandard components like `00` will be accepted. */ export declare function isDicomUid(input: string, strict?: boolean): boolean;