/** Threshold for "recently created" user (1 day in ms). */ export declare const USER_AGE_THRESHOLD_MS: number; /** Question identifiers for onboarding questionnaire. */ export declare const ONBOARDING_QUESTION: { readonly USE_CASE: "use_case"; readonly ORG_DOMAIN: "org_domain"; readonly PRIMARY_ROLE: "primary_role"; readonly PRIMARY_STORAGE: "primary_storage"; }; export type OnboardingQuestionId = (typeof ONBOARDING_QUESTION)[keyof typeof ONBOARDING_QUESTION]; /** Answer values for "What are you planning to use OWOX for?" (multi-select). */ export declare const USE_CASE_ANSWER: { readonly SYNC_DWH_SHEETS: "sync_dwh_sheets"; readonly SYNC_DWH_LOOKER: "sync_dwh_looker"; readonly AI_INSIGHTS: "ai_insights"; readonly IMPORT_EXTERNAL_DWH: "import_external_dwh"; readonly IMPORT_EXTERNAL_SHEETS: "import_external_sheets"; readonly OTHER: "other"; }; /** Answer values for "What is your primary role?" (single-select). */ export declare const PRIMARY_ROLE_ANSWER: { readonly DATA_ANALYST_ENGINEER: "data_analyst_engineer"; readonly DIGITAL_MARKETER: "digital_marketer"; readonly HEAD_OF_ANALYTICS: "head_of_analytics"; readonly C_LEVEL: "c_level"; readonly OTHER: "other"; }; /** Answer values for "Your primary Storage" (single-select). */ export declare const PRIMARY_STORAGE_ANSWER: { readonly GBQ: "gbq"; readonly AWS_ATHENA: "aws_athena"; readonly AWS_REDSHIFT: "aws_redshift"; readonly SNOWFLAKE: "snowflake"; readonly DATABRICKS: "databricks"; readonly AZURE_SYNAPSE: "azure_synapse"; readonly OWOX_CLOUD_EU: "owox_cloud_eu"; readonly OWOX_CLOUD_US: "owox_cloud_us"; readonly DONT_KNOW: "dont_know"; readonly OTHER: "other"; }; /** Validation sets for server-side answer checking. */ export declare const VALID_USE_CASE_VALUES: Set<"sync_dwh_sheets" | "sync_dwh_looker" | "ai_insights" | "import_external_dwh" | "import_external_sheets" | "other">; export declare const VALID_PRIMARY_ROLE_VALUES: Set<"other" | "data_analyst_engineer" | "digital_marketer" | "head_of_analytics" | "c_level">; export declare const VALID_PRIMARY_STORAGE_VALUES: Set<"other" | "gbq" | "aws_athena" | "aws_redshift" | "snowflake" | "databricks" | "azure_synapse" | "owox_cloud_eu" | "owox_cloud_us" | "dont_know">; /** Option definitions with labels for rendering in templates. */ export interface OnboardingOption { value: string; label: string; } export declare const USE_CASE_OPTIONS: OnboardingOption[]; export declare const PRIMARY_ROLE_OPTIONS: OnboardingOption[]; export declare const PRIMARY_STORAGE_OPTIONS: OnboardingOption[]; //# sourceMappingURL=onboarding-constants.d.ts.map