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?: [number] | [string] topText?: string price: number currencySymbol?: string rateText?: string bottomText?: string onClickFootnote?: MouseEvent strikeThrough?: boolean a11yText?: string } declare const PriceLockup: ComponentType export default PriceLockup