import { Layout } from './Layout'; import { CommandName } from './CommandName'; export interface LayoutProcessor { (layout: Layout<{}>, commandName: CommandName): Layout<{}>; } export interface OptionsProcessor { (value: T, commandName: CommandName, props?: S): T; }