import React from 'react'; import { Tags } from '../../../types/Tags'; declare type PeopleItemTypeProps = 'li' | 'div'; export interface PeopleItemsProps { as?: PeopleItemTypeProps; children?: React.ReactNode; firstName: string; lastName: string; jobTitle?: string; email?: string; phoneNumber?: string; tags?: Tags; profileImage?: string; link?: string; alt?: string; noImage?: boolean; } export declare const PeopleItems: ({ as: Component, firstName, lastName, email, phoneNumber, tags, jobTitle, profileImage, alt, link, noImage, }: PeopleItemsProps) => JSX.Element; export {};