import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export declare class Imap implements ICredentialType {
    name: string;
    displayName: string;
    documentationUrl: string;
    properties: INodeProperties[];
}
export interface ICredentialsDataImap {
    host: string;
    port: number;
    user: string;
    password: string;
    secure: boolean;
    allowUnauthorizedCerts: boolean;
}
export declare function isCredentialsDataImap(candidate: unknown): candidate is ICredentialsDataImap;
//# sourceMappingURL=Imap.credentials.d.ts.map