import { Point } from '../options'; import { ExportMenuButtonTheme } from '../theme'; export type ExportMenuButtonModel = { type: 'exportMenuButton'; opened: boolean; theme: Required; } & Point; export type ExportMenuModel = { type: 'exportMenu'; } & Point; export type ExportMenuModels = { exportMenuButton: ExportMenuButtonModel[] };