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