import * as React from 'react'; import '../styles.scss'; import { AccountingPkgPresentation } from '../Models/AccountingPackages'; export type IAccountingPackageProps = { buttonsDisabled: boolean; accountingPackages: AccountingPkgPresentation[]; style?: React.CSSProperties; onPackageInvoke(accountingPackage: AccountingPkgPresentation): void; }; export declare const AccountingPackages: React.FC;