import { IExecuteFunctions } from 'n8n-workflow';
export declare class ViewHandler {
    static execute(context: IExecuteFunctions, operation: string, itemIndex: number): Promise<any>;
    /**
     * Alle Views einer Tabelle abrufen
     */
    private static getAll;
    /**
     * Eine spezifische View abrufen
     */
    private static get;
    /**
     * Eine neue View erstellen
     */
    private static create;
    /**
     * Eine View aktualisieren
     */
    private static update;
    /**
     * Eine View löschen
     */
    private static delete;
    /**
     * AI-Friendly View erstellen
     * Alle Parameter sind durch fixedCollection gleichzeitig verfügbar
     */
    private static createAIFriendly;
    /**
     * AI-Friendly View aktualisieren
     * Alle Parameter durch fixedCollection gleichzeitig verfügbar
     */
    private static updateAIFriendly;
}
