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