import { Condition, HandlerFn, When } from './types';
export declare const useCondition: <T = string>(when: When<T>, handler: HandlerFn) => Condition<T>;
