import type { StripeMap } from "../reconcile/types.js"; export declare const DEFAULT_MAP_PATH: string; export declare function resolveMapPath(flagPath?: string, env?: NodeJS.ProcessEnv): string; /** Load, validate, and return the Stripe map at the resolved path. */ export declare function loadStripeMap(flagPath?: string, env?: NodeJS.ProcessEnv): StripeMap; /** The placeholder object written by `reconcile init`. */ export declare const PLACEHOLDER_MAP: { _placeholder: boolean; _populated_by: string; currency: string; stripeAccount: string; cutoffDate: string; accounts: { revenue: string; vatPayable: string; stripeFees: string; platformFees: string; refunds: string; clearing: string; }; vat: { rate: number; code: string; }; vatTimezone: string; };