import { HMSSessionFeedback, HMSSessionInfo } from './interface';
export declare class FeedbackService {
    private static TAG;
    private static handleError;
    static sendFeedback({ token, eventEndpoint, info, feedback, }: {
        token: string;
        eventEndpoint?: string;
        info: HMSSessionInfo;
        feedback?: HMSSessionFeedback;
    }): Promise<void>;
}
