import { ICredentialType, NodePropertyTypes } from 'n8n-workflow';
export declare class ArubaCentralOAuth2Api implements ICredentialType {
    name: string;
    displayName: string;
    documentationUrl: string;
    __defaults: {
        tokenType: string;
        tokenExpiredStatusCode: number;
        tokenPropertyName: string;
    };
    properties: ({
        displayName: string;
        name: string;
        type: NodePropertyTypes;
        default: string;
        placeholder: string;
        required: boolean;
        description: string;
        typeOptions?: undefined;
    } | {
        displayName: string;
        name: string;
        type: NodePropertyTypes;
        default: string;
        required: boolean;
        description: string;
        placeholder?: undefined;
        typeOptions?: undefined;
    } | {
        displayName: string;
        name: string;
        type: NodePropertyTypes;
        typeOptions: {
            password: boolean;
        };
        default: string;
        required: boolean;
        description: string;
        placeholder?: undefined;
    })[];
}
