import { ChartXAxisProperty, ChartYAxisMetric, EIssueLayoutTypes, EIssuesStoreType, EProductSubscriptionEnum, EStartOfTheWeek, EUserWorkspaceRoles, EViewAccess, IIssueDisplayProperties, IIssueFilterOptions, ILayoutDisplayFiltersOptions, IPaymentProduct, IWorkspaceSearchResults, TAllAvailableDateFilterOperatorsForDisplay, TAllAvailableOperatorsForDisplay, TAnalyticsTabsBase, TBillingFrequency, TChartColorScheme, TCoreSupportedDateFilterOperators, TCoreSupportedOperators, TEstimateSystems, TExtendedSupportedOperators, TExternalFilter, TInboxIssueStatus, TIssue, TIssueActivityComment, TIssueGroupByOptions, TIssueOrderByOptions, TIssuesListTypes, TLoginMediums, TModuleLayoutOptions, TModuleOrderByOptions, TModuleStatus, TProductBillingFrequency, TProfileSettingsTabs, TProjectAppliedDisplayFilterKeys, TProjectOrderByOptions, TProjectSettingsItem, TProjectSettingsTabs, TStateGroups, TStaticViewTypes, TUnreadNotificationsCount, TWorkItemFilterProperty, TWorkspaceSettingsItem, TWorkspaceSettingsTabs } from "@buzzwaretech/types";

//#region src/ai.d.ts
declare enum AI_EDITOR_TASKS {
  ASK_ANYTHING = "ASK_ANYTHING",
}
//#endregion
//#region src/analytics/common.d.ts
interface IInsightField {
  key: string;
  i18nKey: string;
  i18nProps?: {
    entity?: string;
    entityPlural?: string;
    prefix?: string;
    suffix?: string;
    [key: string]: unknown;
  };
}
declare const ANALYTICS_INSIGHTS_FIELDS: Record<TAnalyticsTabsBase, IInsightField[]>;
declare const ANALYTICS_DURATION_FILTER_OPTIONS: {
  name: string;
  value: string;
}[];
declare const ANALYTICS_X_AXIS_VALUES: {
  value: ChartXAxisProperty;
  label: string;
}[];
declare const ANALYTICS_Y_AXIS_VALUES: {
  value: ChartYAxisMetric;
  label: string;
}[];
declare const ANALYTICS_V2_DATE_KEYS: string[];
//#endregion
//#region src/auth/index.d.ts
declare enum E_PASSWORD_STRENGTH {
  EMPTY = "empty",
  LENGTH_NOT_VALID = "length_not_valid",
  STRENGTH_NOT_VALID = "strength_not_valid",
  STRENGTH_VALID = "strength_valid",
}
declare const PASSWORD_MIN_LENGTH = 8;
declare const SPACE_PASSWORD_CRITERIA: {
  key: string;
  label: string;
  isCriteriaValid: (password: string) => boolean;
}[];
declare enum EAuthPageTypes {
  PUBLIC = "PUBLIC",
  NON_AUTHENTICATED = "NON_AUTHENTICATED",
  SET_PASSWORD = "SET_PASSWORD",
  ONBOARDING = "ONBOARDING",
  AUTHENTICATED = "AUTHENTICATED",
}
declare enum EPageTypes {
  INIT = "INIT",
  PUBLIC = "PUBLIC",
  NON_AUTHENTICATED = "NON_AUTHENTICATED",
  ONBOARDING = "ONBOARDING",
  AUTHENTICATED = "AUTHENTICATED",
}
declare enum EAuthModes {
  SIGN_IN = "SIGN_IN",
  SIGN_UP = "SIGN_UP",
}
declare enum EAuthSteps {
  EMAIL = "EMAIL",
  PASSWORD = "PASSWORD",
  UNIQUE_CODE = "UNIQUE_CODE",
}
declare enum EErrorAlertType {
  BANNER_ALERT = "BANNER_ALERT",
  TOAST_ALERT = "TOAST_ALERT",
  INLINE_FIRST_NAME = "INLINE_FIRST_NAME",
  INLINE_EMAIL = "INLINE_EMAIL",
  INLINE_PASSWORD = "INLINE_PASSWORD",
  INLINE_EMAIL_CODE = "INLINE_EMAIL_CODE",
}
type TAuthErrorInfo = {
  type: EErrorAlertType;
  code: EAuthErrorCodes;
  title: string;
  message: string | React.ReactNode;
};
declare enum EAdminAuthErrorCodes {
  ADMIN_ALREADY_EXIST = "5150",
  REQUIRED_ADMIN_EMAIL_PASSWORD_FIRST_NAME = "5155",
  INVALID_ADMIN_EMAIL = "5160",
  INVALID_ADMIN_PASSWORD = "5165",
  REQUIRED_ADMIN_EMAIL_PASSWORD = "5170",
  ADMIN_AUTHENTICATION_FAILED = "5175",
  ADMIN_USER_ALREADY_EXIST = "5180",
  ADMIN_USER_DOES_NOT_EXIST = "5185",
  ADMIN_USER_DEACTIVATED = "5190",
}
type TAdminAuthErrorInfo = {
  type: EErrorAlertType;
  code: EAdminAuthErrorCodes;
  title: string;
  message: string | React.ReactNode;
};
declare enum EAuthErrorCodes {
  INSTANCE_NOT_CONFIGURED = "5000",
  INVALID_EMAIL = "5005",
  EMAIL_REQUIRED = "5010",
  SIGNUP_DISABLED = "5015",
  MAGIC_LINK_LOGIN_DISABLED = "5016",
  PASSWORD_LOGIN_DISABLED = "5018",
  USER_ACCOUNT_DEACTIVATED = "5019",
  INVALID_PASSWORD = "5020",
  PASSWORD_TOO_WEAK = "5021",
  SMTP_NOT_CONFIGURED = "5025",
  USER_ALREADY_EXIST = "5030",
  AUTHENTICATION_FAILED_SIGN_UP = "5035",
  REQUIRED_EMAIL_PASSWORD_SIGN_UP = "5040",
  INVALID_EMAIL_SIGN_UP = "5045",
  INVALID_EMAIL_MAGIC_SIGN_UP = "5050",
  MAGIC_SIGN_UP_EMAIL_CODE_REQUIRED = "5055",
  USER_DOES_NOT_EXIST = "5060",
  AUTHENTICATION_FAILED_SIGN_IN = "5065",
  REQUIRED_EMAIL_PASSWORD_SIGN_IN = "5070",
  INVALID_EMAIL_SIGN_IN = "5075",
  INVALID_EMAIL_MAGIC_SIGN_IN = "5080",
  MAGIC_SIGN_IN_EMAIL_CODE_REQUIRED = "5085",
  INVALID_MAGIC_CODE_SIGN_IN = "5090",
  INVALID_MAGIC_CODE_SIGN_UP = "5092",
  EXPIRED_MAGIC_CODE_SIGN_IN = "5095",
  EXPIRED_MAGIC_CODE_SIGN_UP = "5097",
  EMAIL_CODE_ATTEMPT_EXHAUSTED_SIGN_IN = "5100",
  EMAIL_CODE_ATTEMPT_EXHAUSTED_SIGN_UP = "5102",
  OAUTH_NOT_CONFIGURED = "5104",
  GOOGLE_NOT_CONFIGURED = "5105",
  GITHUB_NOT_CONFIGURED = "5110",
  GITLAB_NOT_CONFIGURED = "5111",
  GOOGLE_OAUTH_PROVIDER_ERROR = "5115",
  GITHUB_OAUTH_PROVIDER_ERROR = "5120",
  GITLAB_OAUTH_PROVIDER_ERROR = "5121",
  INVALID_PASSWORD_TOKEN = "5125",
  EXPIRED_PASSWORD_TOKEN = "5130",
  INCORRECT_OLD_PASSWORD = "5135",
  MISSING_PASSWORD = "5138",
  INVALID_NEW_PASSWORD = "5140",
  PASSWORD_ALREADY_SET = "5145",
  ADMIN_ALREADY_EXIST = "5150",
  REQUIRED_ADMIN_EMAIL_PASSWORD_FIRST_NAME = "5155",
  INVALID_ADMIN_EMAIL = "5160",
  INVALID_ADMIN_PASSWORD = "5165",
  REQUIRED_ADMIN_EMAIL_PASSWORD = "5170",
  ADMIN_AUTHENTICATION_FAILED = "5175",
  ADMIN_USER_ALREADY_EXIST = "5180",
  ADMIN_USER_DOES_NOT_EXIST = "5185",
  ADMIN_USER_DEACTIVATED = "5190",
  RATE_LIMIT_EXCEEDED = "5900",
}
declare const LOGIN_MEDIUM_LABELS: Record<TLoginMediums, string>;
//#endregion
//#region src/chart.d.ts
declare const LABEL_CLASSNAME = "uppercase text-tertiary/60 text-13 tracking-wide";
declare const AXIS_LABEL_CLASSNAME = "uppercase text-tertiary/60 text-13 tracking-wide";
declare enum ChartXAxisDateGrouping {
  DAY = "DAY",
  WEEK = "WEEK",
  MONTH = "MONTH",
  YEAR = "YEAR",
}
declare const TO_CAPITALIZE_PROPERTIES: ChartXAxisProperty[];
declare const CHART_X_AXIS_DATE_PROPERTIES: ChartXAxisProperty[];
declare enum EChartModels {
  BASIC = "BASIC",
  STACKED = "STACKED",
  GROUPED = "GROUPED",
  MULTI_LINE = "MULTI_LINE",
  COMPARISON = "COMPARISON",
  PROGRESS = "PROGRESS",
}
declare const CHART_COLOR_PALETTES: {
  key: TChartColorScheme;
  i18n_label: string;
  light: string[];
  dark: string[];
}[];
//#endregion
//#region src/cycle.d.ts
declare const CYCLE_STATUS: {
  i18n_label: string;
  value: "current" | "upcoming" | "completed" | "draft";
  i18n_title: string;
  color: string;
  textColor: string;
  bgColor: string;
}[];
//#endregion
//#region src/dashboard.d.ts
declare enum EDurationFilters {
  NONE = "none",
  TODAY = "today",
  THIS_WEEK = "this_week",
  THIS_MONTH = "this_month",
  THIS_YEAR = "this_year",
  CUSTOM = "custom",
}
declare const DURATION_FILTER_OPTIONS: {
  key: EDurationFilters;
  label: string;
}[];
declare const PROJECT_BACKGROUND_COLORS: string[];
declare const FILTERED_ISSUES_TABS_LIST: {
  key: TIssuesListTypes;
  label: string;
}[];
declare const UNFILTERED_ISSUES_TABS_LIST: {
  key: TIssuesListTypes;
  label: string;
}[];
type TLinkOptions = {
  userId: string | undefined;
};
//#endregion
//#region src/emoji.d.ts
declare const ISSUE_REACTION_EMOJI_CODES: string[];
declare const RANDOM_EMOJI_CODES: string[];
//#endregion
//#region src/endpoints.d.ts
declare const API_BASE_URL: string;
declare const API_BASE_PATH: string;
declare const API_URL: string;
declare const ADMIN_BASE_URL: string;
declare const ADMIN_BASE_PATH: string;
declare const GOD_MODE_URL: string;
declare const SPACE_BASE_URL: string;
declare const SPACE_BASE_PATH: string;
declare const SITES_URL: string;
declare const LIVE_BASE_URL: string;
declare const LIVE_BASE_PATH: string;
declare const LIVE_URL: string;
declare const WEB_BASE_URL: string;
declare const WEB_BASE_PATH: string;
declare const WEB_URL: string;
declare const WEBSITE_URL: string;
declare const SUPPORT_EMAIL: string;
declare const MARKETING_PRICING_PAGE_LINK = "https://buzzwareTech.so/pricing";
declare const MARKETING_CONTACT_US_PAGE_LINK = "https://buzzwareTech.so/contact";
declare const MARKETING_PLANE_ONE_PAGE_LINK = "https://buzzwareTech.so/one";
//#endregion
//#region src/estimates.d.ts
declare const MAX_ESTIMATE_POINT_INPUT_LENGTH = 20;
declare enum EEstimateSystem {
  POINTS = "points",
  CATEGORIES = "categories",
  TIME = "time",
}
declare enum EEstimateUpdateStages {
  CREATE = "create",
  EDIT = "edit",
  SWITCH = "switch",
}
declare const estimateCount: {
  min: number;
  max: number;
};
declare const ESTIMATE_SYSTEMS: TEstimateSystems;
//#endregion
//#region src/event-tracker/core.d.ts
/**
 * ===========================================================================
 * Event Groups
 * ===========================================================================
 */
declare const GROUP_WORKSPACE_TRACKER_EVENT = "workspace_metrics";
declare const GITHUB_REDIRECTED_TRACKER_EVENT = "github_redirected";
declare const HEADER_GITHUB_ICON = "header_github_icon";
/**
 * ===========================================================================
 * Command palette tracker
 * ===========================================================================
 */
declare const COMMAND_PALETTE_TRACKER_ELEMENTS: {
  COMMAND_PALETTE_SHORTCUT_KEY: string;
};
/**
 * ===========================================================================
 * Workspace Events and Elements
 * ===========================================================================
 */
declare const WORKSPACE_TRACKER_EVENTS: {
  create: string;
  update: string;
  delete: string;
};
declare const WORKSPACE_TRACKER_ELEMENTS: {
  DELETE_WORKSPACE_BUTTON: string;
  ONBOARDING_CREATE_WORKSPACE_BUTTON: string;
  CREATE_WORKSPACE_BUTTON: string;
  UPDATE_WORKSPACE_BUTTON: string;
};
/**
 * ===========================================================================
 * Project Events and Elements
 * ===========================================================================
 */
declare const PROJECT_TRACKER_EVENTS: {
  create: string;
  update: string;
  delete: string;
  feature_toggled: string;
};
declare const PROJECT_TRACKER_ELEMENTS: {
  EXTENDED_SIDEBAR_ADD_BUTTON: string;
  SIDEBAR_CREATE_PROJECT_BUTTON: string;
  SIDEBAR_CREATE_PROJECT_TOOLTIP: string;
  COMMAND_PALETTE_CREATE_BUTTON: string;
  COMMAND_PALETTE_SHORTCUT_CREATE_BUTTON: string;
  EMPTY_STATE_CREATE_PROJECT_BUTTON: string;
  CREATE_HEADER_BUTTON: string;
  CREATE_FIRST_PROJECT_BUTTON: string;
  DELETE_PROJECT_BUTTON: string;
  UPDATE_PROJECT_BUTTON: string;
  CREATE_PROJECT_JIRA_IMPORT_DETAIL_PAGE: string;
  TOGGLE_FEATURE: string;
};
/**
 * ===========================================================================
 * Cycle Events and Elements
 * ===========================================================================
 */
declare const CYCLE_TRACKER_EVENTS: {
  create: string;
  update: string;
  delete: string;
  favorite: string;
  unfavorite: string;
  archive: string;
  restore: string;
};
declare const CYCLE_TRACKER_ELEMENTS: {
  readonly RIGHT_HEADER_ADD_BUTTON: "right_header_add_cycle_button";
  readonly EMPTY_STATE_ADD_BUTTON: "empty_state_add_cycle_button";
  readonly COMMAND_PALETTE_ADD_ITEM: "command_palette_add_cycle_item";
  readonly RIGHT_SIDEBAR: "cycle_right_sidebar";
  readonly QUICK_ACTIONS: "cycle_quick_actions";
  readonly CONTEXT_MENU: "cycle_context_menu";
  readonly LIST_ITEM: "cycle_list_item";
};
/**
 * ===========================================================================
 * Module Events and Elements
 * ===========================================================================
 */
declare const MODULE_TRACKER_EVENTS: {
  create: string;
  update: string;
  delete: string;
  favorite: string;
  unfavorite: string;
  archive: string;
  restore: string;
  link: {
    create: string;
    update: string;
    delete: string;
  };
};
declare const MODULE_TRACKER_ELEMENTS: {
  readonly RIGHT_HEADER_ADD_BUTTON: "right_header_add_module_button";
  readonly EMPTY_STATE_ADD_BUTTON: "empty_state_add_module_button";
  readonly COMMAND_PALETTE_ADD_ITEM: "command_palette_add_module_item";
  readonly RIGHT_SIDEBAR: "module_right_sidebar";
  readonly QUICK_ACTIONS: "module_quick_actions";
  readonly CONTEXT_MENU: "module_context_menu";
  readonly LIST_ITEM: "module_list_item";
  readonly CARD_ITEM: "module_card_item";
};
/**
 * ===========================================================================
 * Work Item Events and Elements
 * ===========================================================================
 */
declare const WORK_ITEM_TRACKER_EVENTS: {
  create: string;
  add_existing: string;
  update: string;
  delete: string;
  archive: string;
  restore: string;
  attachment: {
    add: string;
    remove: string;
  };
  sub_issue: {
    update: string;
    remove: string;
    delete: string;
    create: string;
    add_existing: string;
  };
  draft: {
    create: string;
  };
};
declare const WORK_ITEM_TRACKER_ELEMENTS: {
  readonly HEADER_ADD_BUTTON: {
    readonly WORK_ITEMS: "work_items_header_add_work_item_button";
    readonly PROJECT_VIEW: "project_view_header_add_work_item_button";
    readonly CYCLE: "cycle_header_add_work_item_button";
    readonly MODULE: "module_header_add_work_item_button";
  };
  readonly COMMAND_PALETTE_ADD_BUTTON: "command_palette_add_work_item_button";
  readonly EMPTY_STATE_ADD_BUTTON: {
    readonly WORK_ITEMS: "work_items_empty_state_add_work_item_button";
    readonly PROJECT_VIEW: "project_view_empty_state_add_work_item_button";
    readonly CYCLE: "cycle_empty_state_add_work_item_button";
    readonly MODULE: "module_empty_state_add_work_item_button";
    readonly GLOBAL_VIEW: "global_view_empty_state_add_work_item_button";
  };
  readonly QUICK_ACTIONS: {
    readonly WORK_ITEMS: "work_items_quick_actions";
    readonly PROJECT_VIEW: "project_view_work_items_quick_actions";
    readonly CYCLE: "cycle_work_items_quick_actions";
    readonly MODULE: "module_work_items_quick_actions";
    readonly GLOBAL_VIEW: "global_view_work_items_quick_actions";
    readonly ARCHIVED: "archived_work_items_quick_actions";
    readonly DRAFT: "draft_work_items_quick_actions";
  };
  readonly CONTEXT_MENU: {
    readonly WORK_ITEMS: "work_items_context_menu";
    readonly PROJECT_VIEW: "project_view_context_menu";
    readonly CYCLE: "cycle_context_menu";
    readonly MODULE: "module_context_menu";
    readonly GLOBAL_VIEW: "global_view_context_menu";
    readonly ARCHIVED: "archived_context_menu";
    readonly DRAFT: "draft_context_menu";
  };
};
/**
 * ===========================================================================
 * State Events and Elements
 * ===========================================================================
 */
declare const STATE_TRACKER_EVENTS: {
  create: string;
  update: string;
  delete: string;
};
declare const STATE_TRACKER_ELEMENTS: {
  STATE_GROUP_ADD_BUTTON: string;
  STATE_LIST_DELETE_BUTTON: string;
  STATE_LIST_EDIT_BUTTON: string;
};
/**
 * ===========================================================================
 * Project Page Events and Elements
 * ===========================================================================
 */
declare const PROJECT_PAGE_TRACKER_EVENTS: {
  create: string;
  update: string;
  delete: string;
  archive: string;
  restore: string;
  lock: string;
  unlock: string;
  access_update: string;
  duplicate: string;
  favorite: string;
  unfavorite: string;
  move: string;
};
declare const PROJECT_PAGE_TRACKER_ELEMENTS: {
  readonly COMMAND_PALETTE_SHORTCUT_CREATE_BUTTON: "command_palette_shortcut_create_page_button";
  readonly EMPTY_STATE_CREATE_BUTTON: "empty_state_create_page_button";
  readonly COMMAND_PALETTE_CREATE_BUTTON: "command_palette_create_page_button";
  readonly CONTEXT_MENU: "page_context_menu";
  readonly QUICK_ACTIONS: "page_quick_actions";
  readonly LIST_ITEM: "page_list_item";
  readonly FAVORITE_BUTTON: "page_favorite_button";
  readonly ARCHIVE_BUTTON: "page_archive_button";
  readonly LOCK_BUTTON: "page_lock_button";
  readonly ACCESS_TOGGLE: "page_access_toggle";
  readonly DUPLICATE_BUTTON: "page_duplicate_button";
};
/**
 * ===========================================================================
 * Member Events and Elements
 * ===========================================================================
 */
declare const MEMBER_TRACKER_EVENTS: {
  invite: string;
  accept: string;
  project: {
    add: string;
    leave: string;
  };
  workspace: {
    leave: string;
  };
};
declare const MEMBER_TRACKER_ELEMENTS: {
  readonly HEADER_ADD_BUTTON: "header_add_member_button";
  readonly ACCEPT_INVITATION_BUTTON: "accept_invitation_button";
  readonly ONBOARDING_JOIN_WORKSPACE: "workspace_join_continue_to_workspace_button";
  readonly ONBOARDING_INVITE_MEMBER: "invite_member_continue_button";
  readonly SIDEBAR_PROJECT_QUICK_ACTIONS: "sidebar_project_quick_actions";
  readonly PROJECT_MEMBER_TABLE_CONTEXT_MENU: "project_member_table_context_menu";
  readonly WORKSPACE_MEMBER_TABLE_CONTEXT_MENU: "workspace_member_table_context_menu";
  readonly WORKSPACE_INVITATIONS_LIST_CONTEXT_MENU: "workspace_invitations_list_context_menu";
};
/**
 * ===========================================================================
 * Auth Events and Elements
 * ===========================================================================
 */
declare const AUTH_TRACKER_EVENTS: {
  code_verify: string;
  sign_up_with_password: string;
  sign_in_with_password: string;
  forgot_password: string;
  new_code_requested: string;
  password_created: string;
};
declare const AUTH_TRACKER_ELEMENTS: {
  NAVIGATE_TO_SIGN_UP: string;
  FORGOT_PASSWORD_FROM_SIGNIN: string;
  SIGNUP_FROM_FORGOT_PASSWORD: string;
  SIGN_IN_FROM_SIGNUP: string;
  SIGN_IN_WITH_UNIQUE_CODE: string;
  REQUEST_NEW_CODE: string;
  VERIFY_CODE: string;
  SET_PASSWORD_FORM: string;
};
/**
 * ===========================================================================
 * Global View Events and Elements
 * ===========================================================================
 */
declare const GLOBAL_VIEW_TRACKER_EVENTS: {
  create: string;
  update: string;
  delete: string;
  open: string;
};
declare const GLOBAL_VIEW_TRACKER_ELEMENTS: {
  RIGHT_HEADER_ADD_BUTTON: string;
  HEADER_SAVE_VIEW_BUTTON: string;
  QUICK_ACTIONS: string;
  LIST_ITEM: string;
};
/**
 * ===========================================================================
 * Project View Events and Elements
 * ===========================================================================
 */
declare const PROJECT_VIEW_TRACKER_EVENTS: {
  create: string;
  update: string;
  delete: string;
};
declare const PROJECT_VIEW_TRACKER_ELEMENTS: {
  RIGHT_HEADER_ADD_BUTTON: string;
  COMMAND_PALETTE_ADD_ITEM: string;
  EMPTY_STATE_CREATE_BUTTON: string;
  HEADER_SAVE_VIEW_BUTTON: string;
  PROJECT_HEADER_SAVE_AS_VIEW_BUTTON: string;
  CYCLE_HEADER_SAVE_AS_VIEW_BUTTON: string;
  MODULE_HEADER_SAVE_AS_VIEW_BUTTON: string;
  QUICK_ACTIONS: string;
  LIST_ITEM_CONTEXT_MENU: string;
};
/**
 * ===========================================================================
 * Product Tour Events and Elements
 * ===========================================================================
 */
declare const PRODUCT_TOUR_TRACKER_EVENTS: {
  complete: string;
};
declare const PRODUCT_TOUR_TRACKER_ELEMENTS: {
  START_BUTTON: string;
  SKIP_BUTTON: string;
  CREATE_PROJECT_BUTTON: string;
};
/**
 * ===========================================================================
 * Notification Events and Elements
 * ===========================================================================
 */
declare const NOTIFICATION_TRACKER_EVENTS: {
  archive: string;
  unarchive: string;
  mark_read: string;
  mark_unread: string;
  all_marked_read: string;
};
declare const NOTIFICATION_TRACKER_ELEMENTS: {
  MARK_ALL_AS_READ_BUTTON: string;
  ARCHIVE_UNARCHIVE_BUTTON: string;
  MARK_READ_UNREAD_BUTTON: string;
};
/**
 * ===========================================================================
 * User Events
 * ===========================================================================
 */
declare const USER_TRACKER_EVENTS: {
  add_details: string;
  onboarding_complete: string;
};
declare const USER_TRACKER_ELEMENTS: {
  PRODUCT_CHANGELOG_MODAL: string;
  CHANGELOG_REDIRECTED: string;
};
/**
 * ===========================================================================
 * Onboarding Events and Elements
 * ===========================================================================
 */
declare const ONBOARDING_TRACKER_ELEMENTS: {
  PROFILE_SETUP_FORM: string;
  PASSWORD_CREATION_SELECTED: string;
  PASSWORD_CREATION_SKIPPED: string;
};
/**
 * ===========================================================================
 * Sidebar Events
 * ===========================================================================
 */
declare const SIDEBAR_TRACKER_ELEMENTS: {
  USER_MENU_ITEM: string;
  CREATE_WORK_ITEM_BUTTON: string;
};
/**
 * ===========================================================================
 * Project Settings Events and Elements
 * ===========================================================================
 */
declare const PROJECT_SETTINGS_TRACKER_ELEMENTS: {
  LABELS_EMPTY_STATE_CREATE_BUTTON: string;
  LABELS_HEADER_CREATE_BUTTON: string;
  LABELS_CONTEXT_MENU: string;
  LABELS_DELETE_BUTTON: string;
  ESTIMATES_TOGGLE_BUTTON: string;
  ESTIMATES_EMPTY_STATE_CREATE_BUTTON: string;
  ESTIMATES_LIST_ITEM: string;
  AUTOMATIONS_ARCHIVE_TOGGLE_BUTTON: string;
  AUTOMATIONS_CLOSE_TOGGLE_BUTTON: string;
};
declare const PROJECT_SETTINGS_TRACKER_EVENTS: {
  label_created: string;
  label_updated: string;
  label_deleted: string;
  estimate_created: string;
  estimate_updated: string;
  estimate_deleted: string;
  estimates_toggle: string;
  auto_close_workitems: string;
  auto_archive_workitems: string;
};
/**
 * ===========================================================================
 * Profile Settings Events and Elements
 * ===========================================================================
 */
declare const PROFILE_SETTINGS_TRACKER_EVENTS: {
  deactivate_account: string;
  update_profile: string;
  first_day_updated: string;
  language_updated: string;
  timezone_updated: string;
  theme_updated: string;
  notifications_updated: string;
  pat_created: string;
  pat_deleted: string;
};
declare const PROFILE_SETTINGS_TRACKER_ELEMENTS: {
  SAVE_CHANGES_BUTTON: string;
  DEACTIVATE_ACCOUNT_BUTTON: string;
  THEME_DROPDOWN: string;
  FIRST_DAY_OF_WEEK_DROPDOWN: string;
  LANGUAGE_DROPDOWN: string;
  TIMEZONE_DROPDOWN: string;
  PROPERTY_CHANGES_TOGGLE: string;
  STATE_CHANGES_TOGGLE: string;
  COMMENTS_TOGGLE: string;
  MENTIONS_TOGGLE: string;
  HEADER_ADD_PAT_BUTTON: string;
  EMPTY_STATE_ADD_PAT_BUTTON: string;
  LIST_ITEM_DELETE_ICON: string;
};
/**
 * ===========================================================================
 * Workspace Settings Events and Elements
 * ===========================================================================
 */
declare const WORKSPACE_SETTINGS_TRACKER_EVENTS: {
  upgrade_plan_redirected: string;
  csv_exported: string;
  webhook_created: string;
  webhook_deleted: string;
  webhook_toggled: string;
  webhook_details_page_toggled: string;
  webhook_updated: string;
};
declare const WORKSPACE_SETTINGS_TRACKER_ELEMENTS: {
  BILLING_UPGRADE_BUTTON: (subscriptionType: EProductSubscriptionEnum) => string;
  BILLING_TALK_TO_SALES_BUTTON: string;
  EXPORT_BUTTON: string;
  HEADER_ADD_WEBHOOK_BUTTON: string;
  EMPTY_STATE_ADD_WEBHOOK_BUTTON: string;
  LIST_ITEM_DELETE_BUTTON: string;
  WEBHOOK_LIST_ITEM_TOGGLE_SWITCH: string;
  WEBHOOK_DETAILS_PAGE_TOGGLE_SWITCH: string;
  WEBHOOK_DELETE_BUTTON: string;
  WEBHOOK_UPDATE_BUTTON: string;
};
//#endregion
//#region src/file.d.ts
declare const MAX_FILE_SIZE: number;
declare const ACCEPTED_AVATAR_IMAGE_MIME_TYPES_FOR_REACT_DROPZONE: {
  "image/jpeg": never[];
  "image/jpg": never[];
  "image/png": never[];
  "image/webp": never[];
};
declare const ACCEPTED_COVER_IMAGE_MIME_TYPES_FOR_REACT_DROPZONE: {
  "image/jpeg": never[];
  "image/jpg": never[];
  "image/png": never[];
  "image/webp": never[];
};
/**
 * Dangerous file extensions that should be blocked
 */
declare const DANGEROUS_EXTENSIONS: string[];
//#endregion
//#region src/filter.d.ts
declare enum E_SORT_ORDER {
  ASC = "asc",
  DESC = "desc",
}
declare const DATE_AFTER_FILTER_OPTIONS: {
  name: string;
  value: string;
}[];
declare const DATE_BEFORE_FILTER_OPTIONS: ({
  name: string;
  value: string;
  i18n_name?: never;
} | {
  name: string;
  i18n_name: string;
  value: string;
})[];
declare const PROJECT_CREATED_AT_FILTER_OPTIONS: {
  name: string;
  value: string;
}[];
//#endregion
//#region src/graph.d.ts
declare const CHARTS_THEME: {
  background: string;
  text: {
    color: string;
  };
  axis: {
    domain: {
      line: {
        stroke: string;
        strokeWidth: number;
      };
    };
  };
  tooltip: {
    container: {
      background: string;
      color: string;
      fontSize: string;
      border: string;
    };
  };
  grid: {
    line: {
      stroke: string;
    };
  };
};
declare const CHART_DEFAULT_MARGIN: {
  top: number;
  right: number;
  bottom: number;
  left: number;
};
//#endregion
//#region src/icon.d.ts
declare enum EIconSize {
  XS = "xs",
  SM = "sm",
  MD = "md",
  LG = "lg",
  XL = "xl",
}
//#endregion
//#region src/instance.d.ts
declare enum EInstanceStatus {
  ERROR = "ERROR",
  NOT_YET_READY = "NOT_YET_READY",
}
type TInstanceStatus = {
  status: EInstanceStatus | undefined;
  data?: object;
};
//#endregion
//#region src/intake.d.ts
declare const INBOX_STATUS: {
  key: string;
  status: TInboxIssueStatus;
  i18n_title: string;
  i18n_description: () => string;
}[];
declare const INBOX_ISSUE_ORDER_BY_OPTIONS: {
  key: string;
  i18n_label: string;
}[];
declare const INBOX_ISSUE_SORT_BY_OPTIONS: {
  key: string;
  i18n_label: string;
}[];
declare enum EPastDurationFilters {
  TODAY = "today",
  YESTERDAY = "yesterday",
  LAST_7_DAYS = "last_7_days",
  LAST_30_DAYS = "last_30_days",
}
declare const PAST_DURATION_FILTER_OPTIONS: {
  name: string;
  value: string;
}[];
//#endregion
//#region src/issue/common.d.ts
declare const ALL_ISSUES = "All Issues";
type TIssuePriorities = "urgent" | "high" | "medium" | "low" | "none";
type TIssueFilterPriorityObject = {
  key: TIssuePriorities;
  titleTranslationKey: string;
  className: string;
  icon: string;
};
declare enum EIssueGroupByToServerOptions {
  "state" = "state_id",
  "priority" = "priority",
  "labels" = "labels__id",
  "state_detail.group" = "state__group",
  "assignees" = "assignees__id",
  "cycle" = "cycle_id",
  "module" = "issue_module__module_id",
  "target_date" = "target_date",
  "project" = "project_id",
  "created_by" = "created_by",
  "team_project" = "project_id",
}
declare enum EIssueGroupBYServerToProperty {
  "state_id" = "state_id",
  "priority" = "priority",
  "labels__id" = "label_ids",
  "state__group" = "state__group",
  "assignees__id" = "assignee_ids",
  "cycle_id" = "cycle_id",
  "issue_module__module_id" = "module_ids",
  "target_date" = "target_date",
  "project_id" = "project_id",
  "created_by" = "created_by",
}
declare enum EIssueCommentAccessSpecifier {
  EXTERNAL = "EXTERNAL",
  INTERNAL = "INTERNAL",
}
declare enum EIssueListRow {
  HEADER = "HEADER",
  ISSUE = "ISSUE",
  NO_ISSUES = "NO_ISSUES",
  QUICK_ADD = "QUICK_ADD",
}
declare const ISSUE_PRIORITIES: {
  key: TIssuePriorities;
  title: string;
}[];
declare const DRAG_ALLOWED_GROUPS: TIssueGroupByOptions[];
type TCreateModalStoreTypes = EIssuesStoreType.TEAM | EIssuesStoreType.PROJECT | EIssuesStoreType.TEAM_VIEW | EIssuesStoreType.PROJECT_VIEW | EIssuesStoreType.PROFILE | EIssuesStoreType.CYCLE | EIssuesStoreType.MODULE | EIssuesStoreType.EPIC | EIssuesStoreType.TEAM_PROJECT_WORK_ITEMS;
declare const ISSUE_GROUP_BY_OPTIONS: {
  key: TIssueGroupByOptions;
  titleTranslationKey: string;
}[];
declare const ISSUE_ORDER_BY_OPTIONS: {
  key: TIssueOrderByOptions;
  titleTranslationKey: string;
}[];
declare const ISSUE_DISPLAY_PROPERTIES_KEYS: (keyof IIssueDisplayProperties)[];
declare const SUB_ISSUES_DISPLAY_PROPERTIES_KEYS: (keyof IIssueDisplayProperties)[];
declare const ISSUE_DISPLAY_PROPERTIES: {
  key: keyof IIssueDisplayProperties;
  titleTranslationKey: string;
}[];
declare const SPREADSHEET_PROPERTY_LIST: (keyof IIssueDisplayProperties)[];
declare const SPREADSHEET_PROPERTY_DETAILS: { [key in keyof IIssueDisplayProperties]: {
  i18n_title: string;
  ascendingOrderKey: TIssueOrderByOptions;
  ascendingOrderTitle: string;
  descendingOrderKey: TIssueOrderByOptions;
  descendingOrderTitle: string;
  icon: string;
} };
declare const FILTER_TO_ISSUE_MAP: Partial<Record<keyof IIssueFilterOptions, keyof TIssue>>;
//#endregion
//#region src/issue/layout.d.ts
type TIssueLayout = "list" | "kanban" | "calendar" | "spreadsheet" | "gantt";
type TIssueLayoutMap = Record<EIssueLayoutTypes, {
  key: EIssueLayoutTypes;
  i18n_title: string;
  i18n_label: string;
}>;
declare const SITES_ISSUE_LAYOUTS: {
  key: TIssueLayout;
  titleTranslationKey: string;
  icon: string;
}[];
declare const ISSUE_LAYOUT_MAP: TIssueLayoutMap;
declare const ISSUE_LAYOUTS: {
  key: EIssueLayoutTypes;
  i18n_title: string;
  i18n_label: string;
}[];
//#endregion
//#region src/issue/filter.d.ts
type TIssueFilterKeys = "priority" | "state" | "labels";
declare enum EServerGroupByToFilterOptions {
  "state_id" = "state",
  "priority" = "priority",
  "labels__id" = "labels",
  "state__group" = "state_group",
  "assignees__id" = "assignees",
  "cycle_id" = "cycle",
  "issue_module__module_id" = "module",
  "target_date" = "target_date",
  "project_id" = "project",
  "created_by" = "created_by",
}
declare enum EIssueFilterType {
  FILTERS = "rich_filters",
  DISPLAY_FILTERS = "display_filters",
  DISPLAY_PROPERTIES = "display_properties",
  KANBAN_FILTERS = "kanban_filters",
}
type TSupportedFilterTypeForUpdate = EIssueFilterType.DISPLAY_FILTERS | EIssueFilterType.DISPLAY_PROPERTIES | EIssueFilterType.KANBAN_FILTERS;
declare const ISSUE_DISPLAY_FILTERS_BY_LAYOUT: { [key in TIssueLayout]: Record<"filters", TIssueFilterKeys[]> };
declare const ISSUE_PRIORITY_FILTERS: TIssueFilterPriorityObject[];
type TFiltersLayoutOptions = {
  [layoutType: string]: ILayoutDisplayFiltersOptions;
};
type TFilterPropertiesByPageType = {
  filters: TWorkItemFilterProperty[];
  layoutOptions: TFiltersLayoutOptions;
};
type TIssueFiltersToDisplayByPageType = {
  [pageType: string]: TFilterPropertiesByPageType;
};
declare const ISSUE_DISPLAY_FILTERS_BY_PAGE: TIssueFiltersToDisplayByPageType;
declare const ISSUE_STORE_TO_FILTERS_MAP: Partial<Record<EIssuesStoreType, TFilterPropertiesByPageType>>;
declare const SUB_WORK_ITEM_AVAILABLE_FILTERS_FOR_WORK_ITEM_PAGE: (keyof IIssueFilterOptions)[];
declare enum EActivityFilterType {
  ACTIVITY = "ACTIVITY",
  COMMENT = "COMMENT",
  STATE = "STATE",
  ASSIGNEE = "ASSIGNEE",
  DEFAULT = "DEFAULT",
}
type TActivityFilters = EActivityFilterType;
type TActivityFilterOptionsKey = Exclude<TActivityFilters, EActivityFilterType.DEFAULT>;
declare const ACTIVITY_FILTER_TYPE_OPTIONS: Record<TActivityFilterOptionsKey, {
  labelTranslationKey: string;
}>;
type TActivityFilterOption = {
  key: TActivityFilters;
  labelTranslationKey: string;
  isSelected: boolean;
  onClick: () => void;
};
declare const defaultActivityFilters: TActivityFilters[];
declare const filterActivityOnSelectedFilters: (activity: TIssueActivityComment[], filters: TActivityFilters[]) => TIssueActivityComment[];
declare const ENABLE_ISSUE_DEPENDENCIES = false;
declare const BASE_ACTIVITY_FILTER_TYPES: EActivityFilterType[];
//#endregion
//#region src/issue/modal.d.ts
declare const DEFAULT_WORK_ITEM_FORM_VALUES: Partial<TIssue>;
//#endregion
//#region src/label.d.ts
declare const LABEL_COLOR_OPTIONS: string[];
declare const getRandomLabelColor: () => string;
//#endregion
//#region src/members.d.ts
type TMemberOrderByOptions = "display_name" | "-display_name" | "full_name" | "-full_name" | "email" | "-email" | "joining_date" | "-joining_date" | "role" | "-role";
interface IProjectMemberDisplayProperties {
  full_name: boolean;
  display_name: boolean;
  email: boolean;
  joining_date: boolean;
  role: boolean;
}
declare const MEMBER_PROPERTY_DETAILS: { [key in keyof IProjectMemberDisplayProperties]: {
  i18n_title: string;
  ascendingOrderKey: TMemberOrderByOptions;
  ascendingOrderTitle: string;
  descendingOrderKey: TMemberOrderByOptions;
  descendingOrderTitle: string;
  iconName: string;
  isSortingAllowed: boolean;
} };
//#endregion
//#region src/metadata.d.ts
declare const SITE_NAME = "BuzzwareTech | Simple, project management tool.";
declare const SITE_TITLE = "BuzzwareTech | Simple, project management tool.";
declare const SITE_DESCRIPTION = "Open-source project management tool to manage work items, cycles, and product roadmaps easily";
declare const SITE_KEYWORDS = "software development, plan, ship, software, accelerate, code management, release management, project management, work items tracking, agile, scrum, kanban, collaboration";
declare const SITE_URL = "https://app.buzzwareTech.so/";
declare const TWITTER_USER_NAME = "BuzzwareTech | Simple, project management tool.";
declare const SPACE_SITE_NAME = "BuzzwareTech Publish | Make your BuzzwareTech boards and roadmaps pubic with just one-click. ";
declare const SPACE_SITE_TITLE = "BuzzwareTech Publish | Make your BuzzwareTech boards public with one-click";
declare const SPACE_SITE_DESCRIPTION = "BuzzwareTech Publish is a customer feedback management tool built on top of buzzwareTech.so";
declare const SPACE_SITE_KEYWORDS = "software development, customer feedback, software, accelerate, code management, release management, project management, work items tracking, agile, scrum, kanban, collaboration";
declare const SPACE_SITE_URL = "https://app.buzzwareTech.so/";
declare const SPACE_TWITTER_USER_NAME = "planepowers";
//#endregion
//#region src/module.d.ts
declare const MODULE_STATUS_COLORS: { [key in TModuleStatus]: string };
declare const MODULE_STATUS: {
  i18n_label: string;
  value: TModuleStatus;
  color: string;
  textColor: string;
  bgColor: string;
}[];
declare const MODULE_VIEW_LAYOUTS: {
  key: TModuleLayoutOptions;
  i18n_title: string;
}[];
declare const MODULE_ORDER_BY_OPTIONS: {
  key: TModuleOrderByOptions;
  i18n_label: string;
}[];
//#endregion
//#region src/notification.d.ts
declare enum ENotificationTab {
  ALL = "all",
  MENTIONS = "mentions",
}
declare enum ENotificationFilterType {
  CREATED = "created",
  ASSIGNED = "assigned",
  SUBSCRIBED = "subscribed",
}
declare enum ENotificationLoader {
  INIT_LOADER = "init-loader",
  MUTATION_LOADER = "mutation-loader",
  PAGINATION_LOADER = "pagination-loader",
  REFRESH = "refresh",
  MARK_ALL_AS_READY = "mark-all-as-read",
}
declare enum ENotificationQueryParamType {
  INIT = "init",
  CURRENT = "current",
  NEXT = "next",
}
type TNotificationTab = ENotificationTab.ALL | ENotificationTab.MENTIONS;
declare const NOTIFICATION_TABS: {
  i18n_label: string;
  value: ENotificationTab;
  count: (unReadNotification: TUnreadNotificationsCount) => number;
}[];
declare const FILTER_TYPE_OPTIONS: {
  i18n_label: string;
  value: ENotificationFilterType;
}[];
declare const NOTIFICATION_SNOOZE_OPTIONS: ({
  key: string;
  i18n_label: string;
  value: () => Date;
} | {
  key: string;
  i18n_label: string;
  value: undefined;
})[];
declare const allTimeIn30MinutesInterval12HoursFormat: Array<{
  label: string;
  value: string;
}>;
//#endregion
//#region src/page.d.ts
declare enum EPageAccess {
  PUBLIC = 0,
  PRIVATE = 1,
}
type TCreatePageModal = {
  isOpen: boolean;
  pageAccess?: EPageAccess;
};
declare const DEFAULT_CREATE_PAGE_MODAL_DATA: TCreatePageModal;
//#endregion
//#region src/payment.d.ts
/**
 * Default billing frequency for each product subscription type
 */
declare const DEFAULT_PRODUCT_BILLING_FREQUENCY: TProductBillingFrequency;
/**
 * Subscription types that support billing frequency toggle (monthly/yearly)
 */
declare const SUBSCRIPTION_WITH_BILLING_FREQUENCY: EProductSubscriptionEnum[];
/**
 * Mapping of product subscription types to their respective payment product details
 * Used to provide information about each product's pricing and features
 */
declare const PLANE_COMMUNITY_PRODUCTS: Record<string, IPaymentProduct>;
/**
 * URL for the "Talk to Sales" page where users can contact sales team
 */
declare const TALK_TO_SALES_URL = "https://buzzwareTech.so/talk-to-sales";
/**
 * Mapping of subscription types to their respective upgrade/redirection URLs based on billing frequency
 * Used for self-hosted installations to redirect users to appropriate upgrade pages
 */
declare const SUBSCRIPTION_REDIRECTION_URLS: Record<EProductSubscriptionEnum, Record<TBillingFrequency, string>>;
/**
 * Mapping of subscription types to their respective marketing webpage URLs
 * Used to direct users to learn more about each plan's features and pricing
 */
declare const SUBSCRIPTION_WEBPAGE_URLS: Record<EProductSubscriptionEnum, string>;
//#endregion
//#region src/profile.d.ts
declare const PROFILE_VIEWER_TAB: {
  key: string;
  route: string;
  i18n_label: string;
  selected: string;
}[];
declare const PROFILE_ADMINS_TAB: {
  key: string;
  route: string;
  i18n_label: string;
  selected: string;
}[];
declare const PREFERENCE_OPTIONS: {
  id: string;
  title: string;
  description: string;
}[];
/**
 * @description The options for the start of the week
 * @type {Array<{value: EStartOfTheWeek, label: string}>}
 * @constant
 */
declare const START_OF_THE_WEEK_OPTIONS: {
  value: EStartOfTheWeek;
  label: string;
}[];
//#endregion
//#region src/project.d.ts
type TNetworkChoiceIconKey = "Lock" | "Globe2";
type TNetworkChoice = {
  key: 0 | 2;
  labelKey: string;
  i18n_label: string;
  description: string;
  iconKey: TNetworkChoiceIconKey;
};
declare const NETWORK_CHOICES: TNetworkChoice[];
declare const GROUP_CHOICES: {
  backlog: {
    key: string;
    i18n_label: string;
  };
  unstarted: {
    key: string;
    i18n_label: string;
  };
  started: {
    key: string;
    i18n_label: string;
  };
  completed: {
    key: string;
    i18n_label: string;
  };
  cancelled: {
    key: string;
    i18n_label: string;
  };
};
declare const PROJECT_AUTOMATION_MONTHS: {
  i18n_label: string;
  value: number;
}[];
declare const PROJECT_ORDER_BY_OPTIONS: {
  key: TProjectOrderByOptions;
  i18n_label: string;
}[];
declare const PROJECT_DISPLAY_FILTER_OPTIONS: {
  key: TProjectAppliedDisplayFilterKeys;
  i18n_label: string;
}[];
declare const PROJECT_ERROR_MESSAGES: {
  permissionError: {
    i18n_title: string;
    i18n_message: undefined;
  };
  cycleDeleteError: {
    i18n_title: string;
    i18n_message: string;
  };
  moduleDeleteError: {
    i18n_title: string;
    i18n_message: string;
  };
  issueDeleteError: {
    i18n_title: string;
    i18n_message: string;
  };
};
declare enum EProjectFeatureKey {
  WORK_ITEMS = "work_items",
  CYCLES = "cycles",
  MODULES = "modules",
  VIEWS = "views",
  PAGES = "pages",
  INTAKE = "intake",
}
//#endregion
//#region src/rich-filters/operator-labels/core.d.ts
/**
 * Core operator labels
 */
declare const CORE_OPERATOR_LABELS_MAP: Record<TCoreSupportedOperators, string>;
/**
 * Core date-specific operator labels
 */
declare const CORE_DATE_OPERATOR_LABELS_MAP: Record<TCoreSupportedDateFilterOperators, string>;
//#endregion
//#region src/rich-filters/operator-labels/extended.d.ts
/**
 * Extended operator labels
 */
declare const EXTENDED_OPERATOR_LABELS_MAP: Record<TExtendedSupportedOperators, string>;
/**
 * Extended date-specific operator labels
 */
declare const EXTENDED_DATE_OPERATOR_LABELS_MAP: Record<TExtendedSupportedOperators, string>;
/**
 * Negated operator labels for all operators
 */
declare const NEGATED_OPERATOR_LABELS_MAP: Record<never, string>;
/**
 * Negated date operator labels for all date operators
 */
declare const NEGATED_DATE_OPERATOR_LABELS_MAP: Record<never, string>;
//#endregion
//#region src/rich-filters/operator-labels/index.d.ts
/**
 * Empty operator label for unselected state
 */
declare const EMPTY_OPERATOR_LABEL = "--";
/**
 * Complete operator labels mapping - combines core, extended, and negated labels
 */
declare const OPERATOR_LABELS_MAP: Record<TAllAvailableOperatorsForDisplay, string>;
/**
 * Complete date operator labels mapping - combines core, extended, and negated labels
 */
declare const DATE_OPERATOR_LABELS_MAP: Record<TAllAvailableDateFilterOperatorsForDisplay, string>;
//#endregion
//#region src/rich-filters/option.d.ts
/**
 * Filter config options.
 */
type TConfigOptions = Record<string, unknown>;
/**
 * Default filter config options.
 */
declare const DEFAULT_FILTER_CONFIG_OPTIONS: TConfigOptions;
/**
 * Clear filter config.
 */
type TClearFilterOptions = {
  label?: string;
  onFilterClear: () => void | Promise<void>;
  isDisabled?: boolean;
};
/**
 * Save view config.
 */
type TSaveViewOptions<E extends TExternalFilter> = {
  label?: string;
  onViewSave: (expression: E) => void | Promise<void>;
  isDisabled?: boolean;
};
/**
 * Update view config.
 */
type TUpdateViewOptions<E extends TExternalFilter> = {
  label?: string;
  hasAdditionalChanges?: boolean;
  onViewUpdate: (expression: E) => void | Promise<void>;
  isDisabled?: boolean;
};
/**
 * Filter expression options.
 */
type TExpressionOptions<E extends TExternalFilter> = {
  clearFilterOptions?: TClearFilterOptions;
  saveViewOptions?: TSaveViewOptions<E>;
  updateViewOptions?: TUpdateViewOptions<E>;
};
/**
 * Default filter expression options.
 */
declare const DEFAULT_FILTER_EXPRESSION_OPTIONS: TExpressionOptions<TExternalFilter>;
/**
 * Auto visibility options.
 */
type TAutoVisibilityOptions = {
  autoSetVisibility: true;
} | {
  autoSetVisibility: false;
  isVisibleOnMount: boolean;
};
/**
 * Default filter visibility options.
 */
declare const DEFAULT_FILTER_VISIBILITY_OPTIONS: TAutoVisibilityOptions;
/**
 * Filter options.
 * - expression: Filter expression options.
 * - config: Filter config options.
 */
type TFilterOptions<E extends TExternalFilter> = {
  expression: Partial<TExpressionOptions<E>>;
  config: Partial<TConfigOptions>;
  visibility: TAutoVisibilityOptions;
};
//#endregion
//#region src/settings/profile.d.ts
declare enum PROFILE_SETTINGS_CATEGORY {
  YOUR_PROFILE = "your profile",
  DEVELOPER = "developer",
}
declare const PROFILE_SETTINGS_CATEGORIES: PROFILE_SETTINGS_CATEGORY[];
declare const PROFILE_SETTINGS_CATEGORY_LABELS: Record<PROFILE_SETTINGS_CATEGORY, string>;
declare const PROFILE_SETTINGS: Record<TProfileSettingsTabs, {
  key: TProfileSettingsTabs;
  i18n_label: string;
}>;
declare const PROFILE_SETTINGS_TABS: TProfileSettingsTabs[];
declare const GROUPED_PROFILE_SETTINGS: Record<PROFILE_SETTINGS_CATEGORY, {
  key: TProfileSettingsTabs;
  i18n_label: string;
}[]>;
//#endregion
//#region src/settings/project.d.ts
declare enum PROJECT_SETTINGS_CATEGORY {
  GENERAL = "general",
  FEATURES = "features",
  WORK_STRUCTURE = "work-structure",
  EXECUTION = "execution",
}
declare const PROJECT_SETTINGS_CATEGORIES: PROJECT_SETTINGS_CATEGORY[];
declare const PROJECT_SETTINGS_CATEGORY_LABELS: Record<PROJECT_SETTINGS_CATEGORY, string>;
declare const PROJECT_SETTINGS: Record<TProjectSettingsTabs, TProjectSettingsItem>;
declare const PROJECT_SETTINGS_FLAT_MAP: TProjectSettingsItem[];
declare const GROUPED_PROJECT_SETTINGS: Record<PROJECT_SETTINGS_CATEGORY, TProjectSettingsItem[]>;
//#endregion
//#region src/settings/workspace.d.ts
declare enum WORKSPACE_SETTINGS_CATEGORY {
  ADMINISTRATION = "administration",
  FEATURES = "features",
  DEVELOPER = "developer",
}
declare const WORKSPACE_SETTINGS_CATEGORIES: WORKSPACE_SETTINGS_CATEGORY[];
declare const WORKSPACE_SETTINGS_CATEGORY_LABELS: Record<WORKSPACE_SETTINGS_CATEGORY, string>;
declare const WORKSPACE_SETTINGS: Record<TWorkspaceSettingsTabs, TWorkspaceSettingsItem>;
declare const WORKSPACE_SETTINGS_ACCESS: {
  [k: string]: EUserWorkspaceRoles[];
};
declare const GROUPED_WORKSPACE_SETTINGS: Record<WORKSPACE_SETTINGS_CATEGORY, TWorkspaceSettingsItem[]>;
//#endregion
//#region src/sidebar.d.ts
declare const SIDEBAR_WIDTH = 250;
declare const EXTENDED_SIDEBAR_WIDTH = 300;
//#endregion
//#region src/spreadsheet.d.ts
declare const SPREADSHEET_SELECT_GROUP = "spreadsheet-issues";
//#endregion
//#region src/state.d.ts
type TDraggableData = {
  groupKey: TStateGroups;
  id: string;
};
declare const STATE_GROUPS: { [key in TStateGroups]: {
  key: TStateGroups;
  label: string;
  defaultStateName: string;
  color: string;
} };
declare const ARCHIVABLE_STATE_GROUPS: TStateGroups[];
declare const COMPLETED_STATE_GROUPS: TStateGroups[];
declare const PENDING_STATE_GROUPS: TStateGroups[];
declare const STATE_DISTRIBUTION: {
  [STATE_GROUPS.backlog.key]: {
    key: TStateGroups;
    issues: string;
    points: string;
  };
  [STATE_GROUPS.unstarted.key]: {
    key: TStateGroups;
    issues: string;
    points: string;
  };
  [STATE_GROUPS.started.key]: {
    key: TStateGroups;
    issues: string;
    points: string;
  };
  [STATE_GROUPS.completed.key]: {
    key: TStateGroups;
    issues: string;
    points: string;
  };
  [STATE_GROUPS.cancelled.key]: {
    key: TStateGroups;
    issues: string;
    points: string;
  };
};
declare const PROGRESS_STATE_GROUPS_DETAILS: {
  key: string;
  title: string;
  color: string;
}[];
declare const DISPLAY_WORKFLOW_PRO_CTA = false;
//#endregion
//#region src/stickies.d.ts
declare const STICKIES_PER_PAGE = 30;
//#endregion
//#region src/subscription.d.ts
declare const ENTERPRISE_PLAN_FEATURES: string[];
declare const BUSINESS_PLAN_FEATURES: string[];
declare const PRO_PLAN_FEATURES: string[];
declare const ONE_PLAN_FEATURES: string[];
declare const FREE_PLAN_UPGRADE_FEATURES: string[];
//#endregion
//#region src/swr.d.ts
declare const DEFAULT_SWR_CONFIG: {
  refreshWhenHidden: boolean;
  revalidateIfStale: boolean;
  revalidateOnFocus: boolean;
  revalidateOnMount: boolean;
  refreshInterval: number;
  errorRetryCount: number;
};
declare const WEB_SWR_CONFIG: {
  refreshWhenHidden: boolean;
  revalidateIfStale: boolean;
  revalidateOnFocus: boolean;
  revalidateOnMount: boolean;
  errorRetryCount: number;
};
//#endregion
//#region src/tab-indices.d.ts
declare const ISSUE_FORM_TAB_INDICES: string[];
declare const INTAKE_ISSUE_CREATE_FORM_TAB_INDICES: string[];
declare const CREATE_LABEL_TAB_INDICES: string[];
declare const PROJECT_CREATE_TAB_INDICES: string[];
declare const PROJECT_CYCLE_TAB_INDICES: string[];
declare const PROJECT_MODULE_TAB_INDICES: string[];
declare const PROJECT_VIEW_TAB_INDICES: string[];
declare const PROJECT_PAGE_TAB_INDICES: string[];
declare enum ETabIndices {
  ISSUE_FORM = "issue-form",
  INTAKE_ISSUE_FORM = "intake-issue-form",
  CREATE_LABEL = "create-label",
  PROJECT_CREATE = "project-create",
  PROJECT_CYCLE = "project-cycle",
  PROJECT_MODULE = "project-module",
  PROJECT_VIEW = "project-view",
  PROJECT_PAGE = "project-page",
}
declare const TAB_INDEX_MAP: Record<ETabIndices, string[]>;
//#endregion
//#region src/themes.d.ts
declare const THEMES: string[];
interface I_THEME_OPTION {
  key: string;
  value: string;
  i18n_label: string;
  type: string;
  icon: {
    border: string;
    color1: string;
    color2: string;
  };
}
declare const THEME_OPTIONS: I_THEME_OPTION[];
//#endregion
//#region src/user.d.ts
declare enum EAuthenticationPageType {
  STATIC = "STATIC",
  NOT_AUTHENTICATED = "NOT_AUTHENTICATED",
  AUTHENTICATED = "AUTHENTICATED",
}
declare enum EInstancePageType {
  PRE_SETUP = "PRE_SETUP",
  POST_SETUP = "POST_SETUP",
}
declare enum EUserStatus {
  ERROR = "ERROR",
  AUTHENTICATION_NOT_DONE = "AUTHENTICATION_NOT_DONE",
  NOT_YET_READY = "NOT_YET_READY",
}
type TUserStatus = {
  status: EUserStatus | undefined;
  message?: string;
};
declare enum EUserPermissionsLevel {
  WORKSPACE = "WORKSPACE",
  PROJECT = "PROJECT",
}
type TUserPermissionsLevel = EUserPermissionsLevel;
declare enum EUserPermissions {
  ADMIN = 20,
  MEMBER = 15,
  GUEST = 5,
}
type TUserPermissions = EUserPermissions;
type TUserAllowedPermissionsObject = {
  create: TUserPermissions[];
  update: TUserPermissions[];
  delete: TUserPermissions[];
  read: TUserPermissions[];
};
type TUserAllowedPermissions = {
  workspace: {
    [key: string]: Partial<TUserAllowedPermissionsObject>;
  };
  project: {
    [key: string]: Partial<TUserAllowedPermissionsObject>;
  };
};
declare const USER_ALLOWED_PERMISSIONS: TUserAllowedPermissions;
//#endregion
//#region src/views.d.ts
declare const VIEW_ACCESS_SPECIFIERS: {
  key: EViewAccess;
  i18n_label: string;
}[];
declare const VIEW_SORTING_KEY_OPTIONS: {
  key: string;
  i18n_label: string;
}[];
declare const VIEW_SORT_BY_OPTIONS: {
  key: string;
  i18n_label: string;
}[];
//#endregion
//#region src/workspace.d.ts
declare const ORGANIZATION_SIZE: string[];
declare const RESTRICTED_URLS: string[];
declare const ROLE: {
  5: string;
  15: string;
  20: string;
};
declare const ROLE_DETAILS: {
  5: {
    i18n_title: string;
    i18n_description: string;
  };
  15: {
    i18n_title: string;
    i18n_description: string;
  };
  20: {
    i18n_title: string;
    i18n_description: string;
  };
};
declare const USER_ROLES: {
  value: string;
  i18n_label: string;
}[];
declare const IMPORTERS_LIST: {
  provider: string;
  type: string;
  i18n_title: string;
  i18n_description: string;
}[];
declare const EXPORTERS_LIST: {
  provider: string;
  type: string;
  i18n_title: string;
  i18n_description: string;
}[];
declare const DEFAULT_GLOBAL_VIEWS_LIST: {
  key: TStaticViewTypes;
  i18n_label: string;
}[];
interface IWorkspaceSidebarNavigationItem {
  key: string;
  labelTranslationKey: string;
  href: string;
  access: EUserWorkspaceRoles[];
  highlight: (pathname: string, url: string) => boolean;
}
declare const WORKSPACE_SIDEBAR_DYNAMIC_NAVIGATION_ITEMS: Record<string, IWorkspaceSidebarNavigationItem>;
declare const WORKSPACE_SIDEBAR_DYNAMIC_NAVIGATION_ITEMS_LINKS: IWorkspaceSidebarNavigationItem[];
declare const WORKSPACE_SIDEBAR_STATIC_NAVIGATION_ITEMS: Record<string, IWorkspaceSidebarNavigationItem>;
declare const WORKSPACE_SIDEBAR_STATIC_NAVIGATION_ITEMS_LINKS: IWorkspaceSidebarNavigationItem[];
declare const WORKSPACE_SIDEBAR_STATIC_PINNED_NAVIGATION_ITEMS_LINKS: IWorkspaceSidebarNavigationItem[];
declare const IS_FAVORITE_MENU_OPEN = "is_favorite_menu_open";
declare const WORKSPACE_DEFAULT_SEARCH_RESULT: IWorkspaceSearchResults;
declare const USE_CASES: string[];
//#endregion
//#region src/workspace-drafts.d.ts
declare enum EDraftIssuePaginationType {
  INIT = "INIT",
  NEXT = "NEXT",
  PREV = "PREV",
  CURRENT = "CURRENT",
}
//#endregion
export { ACCEPTED_AVATAR_IMAGE_MIME_TYPES_FOR_REACT_DROPZONE, ACCEPTED_COVER_IMAGE_MIME_TYPES_FOR_REACT_DROPZONE, ACTIVITY_FILTER_TYPE_OPTIONS, ADMIN_BASE_PATH, ADMIN_BASE_URL, AI_EDITOR_TASKS, ALL_ISSUES, ANALYTICS_DURATION_FILTER_OPTIONS, ANALYTICS_INSIGHTS_FIELDS, ANALYTICS_V2_DATE_KEYS, ANALYTICS_X_AXIS_VALUES, ANALYTICS_Y_AXIS_VALUES, API_BASE_PATH, API_BASE_URL, API_URL, ARCHIVABLE_STATE_GROUPS, AUTH_TRACKER_ELEMENTS, AUTH_TRACKER_EVENTS, AXIS_LABEL_CLASSNAME, BASE_ACTIVITY_FILTER_TYPES, BUSINESS_PLAN_FEATURES, CHARTS_THEME, CHART_COLOR_PALETTES, CHART_DEFAULT_MARGIN, CHART_X_AXIS_DATE_PROPERTIES, COMMAND_PALETTE_TRACKER_ELEMENTS, COMPLETED_STATE_GROUPS, CORE_DATE_OPERATOR_LABELS_MAP, CORE_OPERATOR_LABELS_MAP, CREATE_LABEL_TAB_INDICES, CYCLE_STATUS, CYCLE_TRACKER_ELEMENTS, CYCLE_TRACKER_EVENTS, ChartXAxisDateGrouping, DANGEROUS_EXTENSIONS, DATE_AFTER_FILTER_OPTIONS, DATE_BEFORE_FILTER_OPTIONS, DATE_OPERATOR_LABELS_MAP, DEFAULT_CREATE_PAGE_MODAL_DATA, DEFAULT_FILTER_CONFIG_OPTIONS, DEFAULT_FILTER_EXPRESSION_OPTIONS, DEFAULT_FILTER_VISIBILITY_OPTIONS, DEFAULT_GLOBAL_VIEWS_LIST, DEFAULT_PRODUCT_BILLING_FREQUENCY, DEFAULT_SWR_CONFIG, DEFAULT_WORK_ITEM_FORM_VALUES, DISPLAY_WORKFLOW_PRO_CTA, DRAG_ALLOWED_GROUPS, DURATION_FILTER_OPTIONS, EActivityFilterType, EAdminAuthErrorCodes, EAuthErrorCodes, EAuthModes, EAuthPageTypes, EAuthSteps, EAuthenticationPageType, EChartModels, EDraftIssuePaginationType, EDurationFilters, EErrorAlertType, EEstimateSystem, EEstimateUpdateStages, EIconSize, EInstancePageType, EInstanceStatus, EIssueCommentAccessSpecifier, EIssueFilterType, EIssueGroupBYServerToProperty, EIssueGroupByToServerOptions, EIssueListRow, EMPTY_OPERATOR_LABEL, ENABLE_ISSUE_DEPENDENCIES, ENTERPRISE_PLAN_FEATURES, ENotificationFilterType, ENotificationLoader, ENotificationQueryParamType, ENotificationTab, EPageAccess, EPageTypes, EPastDurationFilters, EProjectFeatureKey, ESTIMATE_SYSTEMS, EServerGroupByToFilterOptions, ETabIndices, EUserPermissions, EUserPermissionsLevel, EUserStatus, EXPORTERS_LIST, EXTENDED_DATE_OPERATOR_LABELS_MAP, EXTENDED_OPERATOR_LABELS_MAP, EXTENDED_SIDEBAR_WIDTH, E_PASSWORD_STRENGTH, E_SORT_ORDER, FILTERED_ISSUES_TABS_LIST, FILTER_TO_ISSUE_MAP, FILTER_TYPE_OPTIONS, FREE_PLAN_UPGRADE_FEATURES, GITHUB_REDIRECTED_TRACKER_EVENT, GLOBAL_VIEW_TRACKER_ELEMENTS, GLOBAL_VIEW_TRACKER_EVENTS, GOD_MODE_URL, GROUPED_PROFILE_SETTINGS, GROUPED_PROJECT_SETTINGS, GROUPED_WORKSPACE_SETTINGS, GROUP_CHOICES, GROUP_WORKSPACE_TRACKER_EVENT, HEADER_GITHUB_ICON, IInsightField, IMPORTERS_LIST, INBOX_ISSUE_ORDER_BY_OPTIONS, INBOX_ISSUE_SORT_BY_OPTIONS, INBOX_STATUS, INTAKE_ISSUE_CREATE_FORM_TAB_INDICES, IProjectMemberDisplayProperties, ISSUE_DISPLAY_FILTERS_BY_LAYOUT, ISSUE_DISPLAY_FILTERS_BY_PAGE, ISSUE_DISPLAY_PROPERTIES, ISSUE_DISPLAY_PROPERTIES_KEYS, ISSUE_FORM_TAB_INDICES, ISSUE_GROUP_BY_OPTIONS, ISSUE_LAYOUTS, ISSUE_LAYOUT_MAP, ISSUE_ORDER_BY_OPTIONS, ISSUE_PRIORITIES, ISSUE_PRIORITY_FILTERS, ISSUE_REACTION_EMOJI_CODES, ISSUE_STORE_TO_FILTERS_MAP, IS_FAVORITE_MENU_OPEN, IWorkspaceSidebarNavigationItem, I_THEME_OPTION, LABEL_CLASSNAME, LABEL_COLOR_OPTIONS, LIVE_BASE_PATH, LIVE_BASE_URL, LIVE_URL, LOGIN_MEDIUM_LABELS, MARKETING_CONTACT_US_PAGE_LINK, MARKETING_PLANE_ONE_PAGE_LINK, MARKETING_PRICING_PAGE_LINK, MAX_ESTIMATE_POINT_INPUT_LENGTH, MAX_FILE_SIZE, MEMBER_PROPERTY_DETAILS, MEMBER_TRACKER_ELEMENTS, MEMBER_TRACKER_EVENTS, MODULE_ORDER_BY_OPTIONS, MODULE_STATUS, MODULE_STATUS_COLORS, MODULE_TRACKER_ELEMENTS, MODULE_TRACKER_EVENTS, MODULE_VIEW_LAYOUTS, NEGATED_DATE_OPERATOR_LABELS_MAP, NEGATED_OPERATOR_LABELS_MAP, NETWORK_CHOICES, NOTIFICATION_SNOOZE_OPTIONS, NOTIFICATION_TABS, NOTIFICATION_TRACKER_ELEMENTS, NOTIFICATION_TRACKER_EVENTS, ONBOARDING_TRACKER_ELEMENTS, ONE_PLAN_FEATURES, OPERATOR_LABELS_MAP, ORGANIZATION_SIZE, PASSWORD_MIN_LENGTH, PAST_DURATION_FILTER_OPTIONS, PENDING_STATE_GROUPS, PLANE_COMMUNITY_PRODUCTS, PREFERENCE_OPTIONS, PRODUCT_TOUR_TRACKER_ELEMENTS, PRODUCT_TOUR_TRACKER_EVENTS, PROFILE_ADMINS_TAB, PROFILE_SETTINGS, PROFILE_SETTINGS_CATEGORIES, PROFILE_SETTINGS_CATEGORY, PROFILE_SETTINGS_CATEGORY_LABELS, PROFILE_SETTINGS_TABS, PROFILE_SETTINGS_TRACKER_ELEMENTS, PROFILE_SETTINGS_TRACKER_EVENTS, PROFILE_VIEWER_TAB, PROGRESS_STATE_GROUPS_DETAILS, PROJECT_AUTOMATION_MONTHS, PROJECT_BACKGROUND_COLORS, PROJECT_CREATED_AT_FILTER_OPTIONS, PROJECT_CREATE_TAB_INDICES, PROJECT_CYCLE_TAB_INDICES, PROJECT_DISPLAY_FILTER_OPTIONS, PROJECT_ERROR_MESSAGES, PROJECT_MODULE_TAB_INDICES, PROJECT_ORDER_BY_OPTIONS, PROJECT_PAGE_TAB_INDICES, PROJECT_PAGE_TRACKER_ELEMENTS, PROJECT_PAGE_TRACKER_EVENTS, PROJECT_SETTINGS, PROJECT_SETTINGS_CATEGORIES, PROJECT_SETTINGS_CATEGORY, PROJECT_SETTINGS_CATEGORY_LABELS, PROJECT_SETTINGS_FLAT_MAP, PROJECT_SETTINGS_TRACKER_ELEMENTS, PROJECT_SETTINGS_TRACKER_EVENTS, PROJECT_TRACKER_ELEMENTS, PROJECT_TRACKER_EVENTS, PROJECT_VIEW_TAB_INDICES, PROJECT_VIEW_TRACKER_ELEMENTS, PROJECT_VIEW_TRACKER_EVENTS, PRO_PLAN_FEATURES, RANDOM_EMOJI_CODES, RESTRICTED_URLS, ROLE, ROLE_DETAILS, SIDEBAR_TRACKER_ELEMENTS, SIDEBAR_WIDTH, SITES_ISSUE_LAYOUTS, SITES_URL, SITE_DESCRIPTION, SITE_KEYWORDS, SITE_NAME, SITE_TITLE, SITE_URL, SPACE_BASE_PATH, SPACE_BASE_URL, SPACE_PASSWORD_CRITERIA, SPACE_SITE_DESCRIPTION, SPACE_SITE_KEYWORDS, SPACE_SITE_NAME, SPACE_SITE_TITLE, SPACE_SITE_URL, SPACE_TWITTER_USER_NAME, SPREADSHEET_PROPERTY_DETAILS, SPREADSHEET_PROPERTY_LIST, SPREADSHEET_SELECT_GROUP, START_OF_THE_WEEK_OPTIONS, STATE_DISTRIBUTION, STATE_GROUPS, STATE_TRACKER_ELEMENTS, STATE_TRACKER_EVENTS, STICKIES_PER_PAGE, SUBSCRIPTION_REDIRECTION_URLS, SUBSCRIPTION_WEBPAGE_URLS, SUBSCRIPTION_WITH_BILLING_FREQUENCY, SUB_ISSUES_DISPLAY_PROPERTIES_KEYS, SUB_WORK_ITEM_AVAILABLE_FILTERS_FOR_WORK_ITEM_PAGE, SUPPORT_EMAIL, TAB_INDEX_MAP, TALK_TO_SALES_URL, TActivityFilterOption, TActivityFilterOptionsKey, TActivityFilters, TAdminAuthErrorInfo, TAuthErrorInfo, TAutoVisibilityOptions, TClearFilterOptions, TConfigOptions, TCreateModalStoreTypes, TCreatePageModal, TDraggableData, TExpressionOptions, TFilterOptions, TFilterPropertiesByPageType, TFiltersLayoutOptions, THEMES, THEME_OPTIONS, TInstanceStatus, TIssueFilterKeys, TIssueFilterPriorityObject, TIssueFiltersToDisplayByPageType, TIssueLayout, TIssueLayoutMap, TIssuePriorities, TLinkOptions, TMemberOrderByOptions, TNetworkChoice, TNetworkChoiceIconKey, TNotificationTab, TO_CAPITALIZE_PROPERTIES, TSaveViewOptions, TSupportedFilterTypeForUpdate, TUpdateViewOptions, TUserAllowedPermissions, TUserAllowedPermissionsObject, TUserPermissions, TUserPermissionsLevel, TUserStatus, TWITTER_USER_NAME, UNFILTERED_ISSUES_TABS_LIST, USER_ALLOWED_PERMISSIONS, USER_ROLES, USER_TRACKER_ELEMENTS, USER_TRACKER_EVENTS, USE_CASES, VIEW_ACCESS_SPECIFIERS, VIEW_SORTING_KEY_OPTIONS, VIEW_SORT_BY_OPTIONS, WEBSITE_URL, WEB_BASE_PATH, WEB_BASE_URL, WEB_SWR_CONFIG, WEB_URL, WORKSPACE_DEFAULT_SEARCH_RESULT, WORKSPACE_SETTINGS, WORKSPACE_SETTINGS_ACCESS, WORKSPACE_SETTINGS_CATEGORIES, WORKSPACE_SETTINGS_CATEGORY, WORKSPACE_SETTINGS_CATEGORY_LABELS, WORKSPACE_SETTINGS_TRACKER_ELEMENTS, WORKSPACE_SETTINGS_TRACKER_EVENTS, WORKSPACE_SIDEBAR_DYNAMIC_NAVIGATION_ITEMS, WORKSPACE_SIDEBAR_DYNAMIC_NAVIGATION_ITEMS_LINKS, WORKSPACE_SIDEBAR_STATIC_NAVIGATION_ITEMS, WORKSPACE_SIDEBAR_STATIC_NAVIGATION_ITEMS_LINKS, WORKSPACE_SIDEBAR_STATIC_PINNED_NAVIGATION_ITEMS_LINKS, WORKSPACE_TRACKER_ELEMENTS, WORKSPACE_TRACKER_EVENTS, WORK_ITEM_TRACKER_ELEMENTS, WORK_ITEM_TRACKER_EVENTS, allTimeIn30MinutesInterval12HoursFormat, defaultActivityFilters, estimateCount, filterActivityOnSelectedFilters, getRandomLabelColor };
//# sourceMappingURL=index.d.mts.map