/** * Interface for SupergateWay options */ export interface SuperGatewayOptions { apiKey?: string; [key: string]: any; } /** * Interface for SuperGateway API */ export interface SuperGateway { process(input: string, options?: Record): Promise; stream(input: string, options?: Record): Promise; close(): Promise; } /** * Try to dynamically import Supergateway package */ export declare function tryImportSupergateway(): Promise; /** * Create a Supergateway instance */ export declare function createSupergateway(apiKey?: string): Promise;