import { AllEntities, Entity, PropertiesOf } from 'n8n-workflow'; export declare type PlaneApiMap = { bot: 'open-apis/robot/v1/team' | 'open-apis/robot/v1/p2p'; group: 'open-apis/team/v1/create-team' | 'open-apis/team/v1/team-members' | 'open-apis/team/v1/team-info' | 'open-apis/team/v1/team-set/leave' | 'open-apis/team/v1/team-set/request' | 'open-apis/team/v1/team-set/drop' | 'open-apis/team/v1/team-set/invite'; user: 'open-apis/corp/v1/user/head-pic' | 'open-apis/corp/v1/user/batch/head-pic' | 'open-apis/corp/v1/employee' | 'open-apis/corp/v1/user/search' | 'open-apis/corp/v1/user'; util: 'open-apis/util/v1/fp/image'; subscribe: 'open-apis/sub-config/v1/subscribe' | 'open-apis/sub-config/v1/sub-status' | 'open-apis/sub-config/v1/add' | 'open-apis/sub-config/v1/remove' | 'open-apis/sub-config/v1/show'; drive: 'open-apis/drive/v1/folder' | 'open-apis/drive/v1/folder/delete' | 'open-apis/drive/v1/folder/info' | 'open-apis/drive/v1/folder/rename'; }; export declare type PlaneApiAction = AllEntities; export declare type PlaneApiProperties = PropertiesOf; export declare type BotAction = Entity; export declare type BotProperties = PropertiesOf; export declare type MessageAction = Entity; export declare type MessageProperties = PropertiesOf; export declare type FriendAction = Entity; export declare type FriendProperties = PropertiesOf; export declare type GroupAction = Entity; export declare type GroupProperties = PropertiesOf; export declare type MiscAction = Entity; export declare type MiscProperties = PropertiesOf; export interface IProject { id: string; name: string; identifier: string; description?: string; network: number; project_lead?: string; default_assignee?: string; estimate?: string; [key: string]: any; } export interface IIssue { id: string; name: string; description_html?: string; priority: string; state: string; assignees: string[]; labels: string[]; [key: string]: any; } export interface IComment { comment_html: string; access: 'INTERNAL' | 'EXTERNAL'; [key: string]: any; }