import { AuthType } from '../enums/auth-type'; export declare type ConnectorJson = { name: string; version: string; 'tableau-version': { min: 'string'; max: 'string'; }; vendor: { name: 'string'; 'support-link': 'string'; email: 'string'; }; window: { height: number; width: number; }; permission: { api: { [key: string]: [string]; }; }; auth: { type: AuthType; }; };