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