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