import { IAuthenticateGeneric, ICredentialType, NodePropertyTypes } from "n8n-workflow";
export declare class EightByEight implements ICredentialType {
    name: string;
    displayName: string;
    icon: string;
    documentationUrl: string;
    properties: {
        typeOptions: {
            password: boolean;
        };
        displayName: string;
        name: string;
        type: NodePropertyTypes;
        default: string;
    }[];
    authenticate: IAuthenticateGeneric;
}
