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