import type { FscWhiteLabelCountry } from '../../types/index.js'; import type { Profile } from '../types.js'; /** * Builds the FSC profile, optionally scoped to a white-label country. The * country is closed over the returned instance, so `ruleContent()` and * `workflows()` keep their existing (argument-free) signatures and every * existing call site is untouched. `createFscProfile()` (no arg) yields the * country-neutral profile — today's behavior. */ export declare function createFscProfile(country?: FscWhiteLabelCountry): Profile; /** Country-neutral FSC profile registered in the catalog (default behavior). */ export declare const fscProfile: Profile;