import { IllustrationAsset, BaseSvgAsset } from './types.js';
export type AccountingAsset = IllustrationAsset<BaseSvgAsset & {
    readonly name: 'Accounting';
}>;
/**
 * Accounting illustration asset
 * @example
 * ```tsx
 * import { Illustration } from '@payfit/unity-illustrations'
 * import Accounting from '@payfit/unity-illustrations/assets/Accounting'
 *
 * <Illustration
 *   illustration={Accounting}
 *   alt="Accounting illustration"
 *   size="md"
 * />
 * ```
 */
declare const Accounting: AccountingAsset;
export default Accounting;
