import React from 'react'; interface EnterGclProps { heading?: never; text?: never; onClick: (event: React.MouseEvent) => void; variant: 'enterGcl'; } interface GuaranteedProductOfferProps { heading: string; text: string; onClick: (event: React.MouseEvent) => void; variant: 'guaranteed'; } interface NeutralProductOfferProps { heading: string; text: string; onClick?: never; variant: 'neutral'; } export type ProductInformationBoxTypes = EnterGclProps | GuaranteedProductOfferProps | NeutralProductOfferProps; declare const ProductInformationBox: ({ heading, text, onClick, variant, }: ProductInformationBoxTypes) => React.ReactElement; export default ProductInformationBox;