export interface ZambdaExecuteResult {
    /**
     * HTTP status code from the Zambda Function
     */
    status: number;
    /**
     * JSON response payload from the Zambda Function
     */
    output: {
        [k: string]: any;
    } | any[] | string | number | null;
}
