import type { ComponentType, ReactNode } from 'react' import type { HTMLAttrs, Variant } from './common' export interface PriceLockupProps extends HTMLAttrs { children?: ReactNode variant?: Variant size?: 'micro' | 'small' | 'medium' | 'large' signDirection?: 'left' | 'right' footnoteLinks?: Array topText?: string price: string currencySymbol?: string rateText?: string bottomText?: string onClickFootnote?: (index: number) => void strikeThrough?: boolean a11yText?: string tokens?: Record copy?: 'en' | 'fr' dictionary?: Record ratePosition?: 'right' | 'bottom' linkPosition?: string } export declare const PriceLockup: ComponentType