import { IAuthenticateGeneric, ICredentialDataDecryptedObject, ICredentialTestRequest, ICredentialType, IHttpRequestHelper, INodeProperties } from 'n8n-workflow';
export declare class IyzicoApi implements ICredentialType {
    name: string;
    displayName: string;
    documentationUrl: string;
    properties: INodeProperties[];
    authenticate: IAuthenticateGeneric;
    methods: {
        credentialTest: {
            iyzicoApiTest(this: IHttpRequestHelper, credential: ICredentialDataDecryptedObject): Promise<boolean>;
        };
        loadOptions: {
            iyzicoAuth(credential: ICredentialDataDecryptedObject): string;
            iyzicoRandomKey(): string;
        };
    };
    test: ICredentialTestRequest;
}
