import { ICredentialType, INodeProperties, IAuthenticateGeneric, ICredentialTestRequest, IconFile } from "n8n-workflow";
export declare class Bitrix24OAuth implements ICredentialType {
    name: string;
    extends: string[];
    displayName: string;
    documentationUrl: string;
    icon: {
        light: IconFile;
        dark: IconFile;
    };
    properties: INodeProperties[];
    authenticate: IAuthenticateGeneric;
    test: ICredentialTestRequest;
}
