import React from 'react'; declare type PersonProps = { aria?: { [key: string]: string; }; className?: string | string[]; data?: { [key: string]: string; }; firstName: string; id?: string; lastName: string; }; declare const Person: (props: PersonProps) => React.ReactElement; export default Person;