import { CallerType } from '../enums/caller-type'; import { ConnectorJson } from './connector-json'; import { HandlerInput } from './handler-input'; import { OAuthServiceManagerOptions } from './oauth-service-manager-options'; import { SecretsType } from './secrets-type'; export declare type ExtractorOptions = { allowedApps: string[]; allowedRemoteUrls: string[]; connectorJson: ConnectorJson; appUIDir: string; handlersDir: string; connectionId: string; connectorClass: string; endPort: string; handlerInputs: HandlerInput[]; oauthServiceManagerOptions: OAuthServiceManagerOptions | null; secrets: SecretsType | undefined; startPort: string; callerType: CallerType; tacoPath: string; };