import { ICredentialType, INodeProperties, IDataObject } from 'n8n-workflow';
export declare class ClearPassOAuth2Api implements ICredentialType {
    name: string;
    displayName: string;
    documentationUrl: string;
    extends: string[];
    properties: INodeProperties[];
    getAuthUrl(credentials: IDataObject): string;
    getAccessTokenUrl(credentials: IDataObject): string;
}
