import { HoistModel } from '@xh/hoist/core'; /** * Manages built-in collection of user feedback. * @internal */ export declare class FeedbackDialogModel extends HoistModel { xhImpl: boolean; isOpen: boolean; message: string; constructor(); init(): void; show({ message }?: { message?: any; }): void; hide(): void; setMessage(message: string): void; /** * Submit the feedback entry to the activity tracking system. */ submitAsync(): Promise; }