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