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