import React from 'react';
import { AppBase } from '../app/AppBase';
/**
 * An observer component that renders the feedback component
 * when the feedback is open - this is to be used in the root
 * of the app - You probably don't need to use this component
 * directly if you are using the ApphouseApp component
 * @private package internal
 */
export declare const AppFeedback: React.FC<{
    app: AppBase;
}>;
