import { ICredentialType, INodeProperties } from 'n8n-workflow';
export declare const IMAP_CREDENTIALS_NAME = "imapApi";
export declare class ImapCredentials implements ICredentialType {
    name: string;
    displayName: string;
    properties: INodeProperties[];
}
export interface ImapCredentialsData {
    host: string;
    port: number;
    user: string;
    password: string;
    tls: boolean;
    allowUnauthorizedCerts: boolean;
}
