import { IllustrationAsset, BaseAnimatedImageAsset } from './types.js';
export type PeopleAnimationAsset = IllustrationAsset<BaseAnimatedImageAsset & {
    readonly name: 'PeopleAnimation';
}>;
/**
 * PeopleAnimation animated illustration asset (224x224)
 * @example
 * ```tsx
 * import { Illustration } from '@payfit/unity-illustrations'
 * import PeopleAnimation from '@payfit/unity-illustrations/assets/PeopleAnimation'
 *
 * <Illustration
 *   variant="picture"
 *   src={PeopleAnimation}
 *   alt="People animation"
 * />
 * ```
 */
declare const PeopleAnimation: PeopleAnimationAsset;
export default PeopleAnimation;
