import { default as React } from 'react'; type IBillingInformationProps = { /** * The title of the Billing Information * @default 'Billing Information' */ title?: React.ReactNode; /** * Additional CSS classes for styling * @default '' */ className?: string; }; declare const BillingInformation: ({ title, className, }: IBillingInformationProps) => React.JSX.Element | null; export default BillingInformation;