import { Provider } from '@loopback/core'; import { DatasourceIdentifierFn } from 'loopback4-dynamic-datasource'; import { IAuthUserWithPermissions } from '../../bearer-verifier'; /** * This provider gives the identifier that can be used to * identify which datasource config is to be used. */ export declare class DatasourceIdentifierProvider implements Provider { private readonly user; constructor(user: IAuthUserWithPermissions); value(): DatasourceIdentifierFn; }