import { ICredentialTestRequest, ICredentialType, INodeProperties, IHttpRequestHelper, ICredentialDataDecryptedObject } from 'n8n-workflow';
export declare class NetSuiteOAuth1Api implements ICredentialType {
    name: string;
    displayName: string;
    documentationUrl: string;
    description: {
        icon: string;
    };
    properties: INodeProperties[];
    preAuthentication(this: IHttpRequestHelper, credentials: ICredentialDataDecryptedObject): Promise<{
        authHeader: string;
    }>;
    test: ICredentialTestRequest;
}
