import { Notion } from "../Notion";
import { NotionOptions } from "../types/options";
import { Skill } from "../types/skill";
export declare type NotionOnDevice = Omit<Notion, "skill">;
export interface OnDeviceOptions extends NotionOptions {
onDeviceSocketUrl: string;
skill: Skill;
}