/// export interface CreditPrice { unitPrice: number; currency: string; } interface BuyFooterProps { creditPrice?: CreditPrice; href?: string; onClick?: () => void; } export default function BuyFooter({ creditPrice, href, onClick, }: BuyFooterProps): JSX.Element; export {};