type Boundary = number | 'all'; export type DebuggerMessage = { title: string; description?: string; }; export type Boundaries = { top?: Boundary; left?: Boundary; right?: Boundary; bottom?: Boundary; }; export {};