import { ICredentialType, NodePropertyTypes } from 'n8n-workflow'; export declare class POGoCredentials implements ICredentialType { name: string; displayName: string; documentationUrl: string; properties: ({ displayName: string; name: string; type: NodePropertyTypes; options: { name: string; value: string; }[]; default: string; } | { displayName: string; name: string; type: NodePropertyTypes; default: string; options?: undefined; })[]; }