/** * Action element passed to CurrentUserNavProps * * @memberof CurrentUserNav * @alias CurrentUserNavAction */ export declare type CurrentUserNavAction = { /** action label */ label: string; /** action OnClick handler - taking event as a param */ onClick?: (event: any) => void; /** Action icon */ icon?: string; /** indicates if action is active */ isActive?: string; /** href for an action */ href?: string; }; /** * Props passed to {@link CurrentUserNav} component * * @memberof CurrentUserNav * @alias CurrentUserNavProps */ export declare type CurrentUserNavProps = { /** User name */ name: string; /** User title - visible below the name */ title?: string; /** Avatar url */ avatarUrl?: string; /** Array of all the actions visible on hover */ dropActions?: Array; /** Array of all the actions visible by the user name */ lineActions?: Array; };