/** * Whether `input` is a known valid `profile/choice` key. * Sync — bundled registry only. * * Returns `false` for concrete vendor / OpenRouter / gateway ids * (e.g. `google/gemma-3-4b-it`, `openrouter/google/gemma-3-4b-it`). */ export declare function isKnownProfileChoice(input: string): boolean; /** * Sync profile-intent gate over the bundled registry. * * `true` for known `profile/choice` keys (and any other profile-side forms * this package still supports). `false` for concrete vendor / OpenRouter / * gateway model ids. * * Prefer this when distinguishing profile intent from catalog SKUs before * resolve or persist. */ export declare function isKnownProfileInput(input: string): boolean; /** * Alias of {@link isKnownProfileInput}. * * Legacy name from when shortcuts existed; shortcuts are no longer supported, * so this is identical to the profile-input gate. */ export declare function isKnownProfileOrShortcut(input: string): boolean; //# sourceMappingURL=isKnownProfileChoice.d.ts.map