import type { ICredentialType, INodeProperties, ICredentialTestRequest } from 'n8n-workflow';
export declare class OutsetaApiCredentialsApi implements ICredentialType {
    name: string;
    displayName: string;
    documentationUrl: string;
    properties: INodeProperties[];
    authenticate: {
        type: "generic";
        properties: {
            headers: {
                Authorization: string;
            };
        };
    };
    test: ICredentialTestRequest;
}
