export declare class LabDsHeader {
  logoHeader: string;
  eventLogo: () => void;
  eventMyProfile: () => void;
  eventLogout: () => void;
  eventWallet?: () => void;
  balanceWallet?: number;
  user: {
    name: string;
    imageSRC?: string;
    unitId?: string;
    id?: string;
  };
  isToogleViewProfile: boolean;
  handleClick: () => void;
  handleToogleViewProfile: () => void;
  el: HTMLElement;
  checkForClickOutside(ev: any): void;
  render(): any;
}
