import { type IParser, type IMapping } from './parser'; export interface IUntil extends IParser { type: 'Until'; end: string[]; } export declare function Until>(end: string[], mapping: Mapping): IUntil; export declare function Until(end: string[]): IUntil; export declare function IsUntil(value: unknown): value is IUntil; export declare function ParseUntil(end: [...End], input: string): [] | [string, string];