import { type ITigerClient } from "@gooddata/api-client-tiger"; /** * Creates a new tiger client that will connect to the provided hostname (include schema in the hostname). The * authorization headers will be set as follows: * * - If token is provided, its value will be used as Authorization bearer token * - Otherwise if username && password are specified, they will be used for basic-auth. * * @param hostname - hostname where tiger runs * @param token - tiger API token for authentication * @param username - username for authentication * @param password - password for authentication */ export declare function createTigerClient(hostname: string, token?: string, username?: string, password?: string): ITigerClient; //# sourceMappingURL=tigerClient.d.ts.map