import { NumLocation } from './context'; export interface LookupLocationStateMachine { complete(): boolean; step(result: boolean | number): NumLocation; } export declare const createLookupLocationStateMachine: () => LookupLocationStateMachine;