import { ApiClient } from '../../api-exposer'; import type * as OpenFin from '../../../OpenFin'; import { LayoutEntitiesController } from './controllers/layout-entities-controller'; type LayoutPresetType = OpenFin.LayoutPresetType; export interface InitLayoutOptions { containerId?: string; } export interface PresetLayoutOptions { presetType: LayoutPresetType; } export interface DragPayload { 'view-config': OpenFin.ViewCreationOptions; 'view-identity': [string, string, string]; } export type LayoutEntitiesClient = ApiClient; export {};