import { Session, FeedbackState, EndAction } from "./types";
export declare const completeSession: (session: Session, endAction: EndAction, feedbackState: FeedbackState) => Promise<void>;
export declare function createSession(sessionId: string, appId: string, customerId: string): Session;
