/** * Generates a unique identifier string using the given element as context. * @param context The HTMLElement or FunctionComponent to use as context for generating the unique ID. * @returns A unique identifier string. */ export declare function uniqueId(context: Node, ...suffixex: (string | null | undefined)[]): string;