import { FunctionComponent } from 'react'; export interface IInvoiceButtonProps { total: number; currency: string; className: string; } export declare type IInvoice = FunctionComponent;