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