LcapAuth: {
    start: (() => void);
    getUserInfo: (() => Promise<UserInfo>);
    getUserResources: ((domain: string) => Promise<UserResource[]>);
    logout: (() => Promise<void>);
    isInit: (() => boolean);
    has: ((path: string) => boolean);
    _setCustomResources?: ((resources: UserResource[]) => void);
}