/** * Generates persistable uniqueID. * IMPORTANT: Unique ONLY inside a report. They are NOT globally unique!! * @param prefix ; * @param parentNodeIDs * @param uniqueKey * @returns */ export declare const uniqueID: (prefix: "checkbox_and_name_only" | "title_string_only" | "total" | "section" | "section_with_ac_only" | "calculated_section" | "calculated_section_type1" | "ac_group_report" | "ac_report" | "ac_group_subaccount" | "ac_subaccount" | "ac_subentity_total" | "class" | "project" | "class_headers" | "timeframe_header" | "aging_report_row" | "state" | "vendor_row" | "loading_in_progress" | "headers_loading_in_progress" | "spacer_row" | "flux_vendor_row" | "flux_vendor_account_class_row", parentNodeIDs: string[], uniqueKey?: string) => string;