import { Cart } from '../cart'; export interface State { cart: Cart; } export declare type Processor = (text: string, state: State) => Promise;