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