export interface AuthorListProps { names: string[]; highlight?: string; limit?: number; } declare const AuthorList: (props: AuthorListProps) => import('react').DOMElement, Element> | import('react').FunctionComponentElement | null; export { AuthorList };