import type { AuthChoice, OnboardOptions } from "./onboard-types.js"; type OnboardCoreAuthOptionKey = keyof Pick; export type OnboardCoreAuthFlag = { optionKey: OnboardCoreAuthOptionKey; authChoice: AuthChoice; cliFlag: `--${string}`; cliOption: `--${string} `; description: string; }; export const CORE_ONBOARD_AUTH_FLAGS: ReadonlyArray = [];