export declare const FULFILLMENT_SHIPPING = 5.9; export declare const CHANNEL_FEE_RATE = 0.039; export declare const MIN_MARGIN = 0.2; /** Recommended MINIMUM retail for a garment at `baseCost`. Positive-margin by construction; * product tools refuse to list below this. Undefined when cost is unknown (e.g. Printify, * which doesn't expose variant cost via the API). */ export declare function pricingFloor(baseCost: number | undefined): number | undefined; export type QualityTier = 'budget' | 'standard' | 'premium'; export declare function qualityTier(brand?: string, name?: string): QualityTier; export type PrintStyle = 'placed' | 'fill'; /** Default print style for a garment by name: 'fill' for face goods, 'placed' otherwise * (apparel always placed — the design floats with transparency preserved). */ export declare function garmentWarnings(providerRefId: string | undefined): string[]; export interface CuratedGarment { provider: 'Printful' | 'Printify'; product_ref_id?: string; brand: string; name: string; category: string; quality_tier: QualityTier; recommended_retail: number; audiences: string[]; note: string; } export declare const CURATED_GARMENTS: CuratedGarment[]; export interface GarmentRecommendation { recommendation: CuratedGarment; rationale: string; alternatives: CuratedGarment[]; } export declare function recommendGarment(opts: { budget_tier?: string; audience?: string; }): GarmentRecommendation;