import { Token } from '../types.js'; import { Function } from 'ts-toolbelt'; declare const buildToken: Function.Curry<(data: Omit, value: string) => any>; declare const isToken: ({ type, value }: Token) => boolean; export { buildToken, isToken };