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