import { Parser } from './types'; /** * Will turn any string kebab-case into camel-case. * * @example * toCamelCase('dark-blue') // darkBlue * toCamelCase('--color-light-pink') // colorLightPink * toCamelCase('yellow') // yellow * toCamelCase(':hover') // :hover */ export declare const toCamelCase: (t: string) => string; /** * Composes multiple functions into one */ export declare const compose: (parsers: Parser[]) => Parser; export declare const constructParsers: (existing: never[] | undefined, parsers: any) => Parser[];