import { AssistantRecord, AssistantClientCommand } from '../typings';
export declare const createRecordOfflinePlayer: (record?: AssistantRecord | undefined, { context }?: {
    context?: Window | undefined;
}) => {
    continue: (onPlay?: ((command: AssistantClientCommand) => void) | undefined) => boolean;
    play: (onPlay?: ((command: AssistantClientCommand) => void) | undefined) => void;
    getNextAction: () => {
        action: any;
        name: string | undefined;
        requestId: any;
    } | undefined;
    setRecord: (rec: AssistantRecord) => void;
};
//# sourceMappingURL=offline-player.d.ts.map