import { IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-workflow';
import { AirCredentials } from '../../../../credentials/AirApi.credentials';
export interface UpdateBannerRequest {
    message: string;
    enabled: boolean;
}
export interface UpdateBannerResponse {
    success: boolean;
    result: {
        message: string;
        enabled: boolean;
        updatedAt: string;
    };
    statusCode: number;
    errors: string[];
}
export declare const api: {
    updateBannerMessage(context: IExecuteFunctions | ILoadOptionsFunctions, credentials: AirCredentials, data: UpdateBannerRequest): Promise<UpdateBannerResponse>;
};
