#!/usr/bin/env node
/**
 * LinkedIn OAuth Setup Tool
 * Handles the complete OAuth flow during installation
 */
export declare class OAuthSetup {
    private tokenDir;
    private tokenFile;
    private credentialsFile;
    private config;
    setup(): Promise<boolean>;
    private checkExistingToken;
    private loadOrGetCredentials;
    private getAuthorizationUrl;
    private startCallbackServer;
    private exchangeCodeForToken;
    private saveToken;
    private verifyToken;
}
//# sourceMappingURL=oauth-setup.d.ts.map