import { ILoadOptionsFunctions, INodePropertyOptions, INodeListSearchResult } from 'n8n-workflow';
export declare class NodeLoadOptions {
    static getBoards(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
    static getStacks(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
    static getLabels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
}
export declare class NodeListSearch {
    static getBoards(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
    static getStacks(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
    static getCards(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
    static getUsers(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
    static getLabels(this: ILoadOptionsFunctions, filter?: string): Promise<INodeListSearchResult>;
}
