import { Kysely } from "kysely"; import { Database } from "../db"; export declare function get(db: Kysely): (tenantId: string, custom_domain_id: string) => Promise<{ primary: boolean; domain_metadata: undefined; verification: undefined; tenant_id: string; created_at: string; updated_at: string; verification_method: "txt" | undefined; status: "pending" | "disabled" | "pending_verification" | "ready"; type: "auth0_managed_certs" | "self_managed_certs"; domain: string; custom_client_ip_header: "null" | "true-client-ip" | "cf-connecting-ip" | "x-forwarded-for" | "x-azure-clientip" | undefined; custom_domain_id: string; origin_domain_name: string | undefined; tls_policy: string | undefined; } | null>;