import React from 'react'; import { type EndItemProps } from './end-item'; interface ProfileProps extends Omit { /** * The URL of the image to display in the avatar. */ src?: string; } /** * __Profile__ * * The Profile button for the top navigation. */ export declare const Profile: React.ForwardRefExoticComponent & React.RefAttributes>; export {};