/** * CurrencyDisplay - Formats and displays monetary values * * Displays formatted currency with configurable unit. * Use `unit="cents"` (default) when amount is in cents, or `unit="dollars"` for dollar values. * Supports CAD/USD with appropriate symbols and locale formatting. */ /** Props for CurrencyDisplay component */ export interface Props { /** Amount value */ amount: number; /** Currency code */ currency?: 'CAD' | 'USD'; /** Whether amount is in cents or dollars (default: cents) */ unit?: 'cents' | 'dollars'; /** Show +/- sign for non-zero values */ showSign?: boolean; /** Display size */ size?: 'sm' | 'md' | 'lg'; /** Highlight negative values in red */ highlightNegative?: boolean; /** Highlight positive values in green */ highlightPositive?: boolean; /** Optional CSS class */ class?: string; } declare const CurrencyDisplay: import("svelte").Component; type CurrencyDisplay = ReturnType; export default CurrencyDisplay; //# sourceMappingURL=CurrencyDisplay.svelte.d.ts.map