import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeListSearchResult, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class Trello implements INodeType {
    description: INodeTypeDescription;
    methods: {
        listSearch: {
            searchBoards(this: ILoadOptionsFunctions, query?: string): Promise<INodeListSearchResult>;
            searchCards(this: ILoadOptionsFunctions, query?: string): Promise<INodeListSearchResult>;
        };
    };
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
//# sourceMappingURL=Trello.node.d.ts.map