import { type IParser, type IMapping } from './parser'; export interface IIdent extends IParser { type: 'Ident'; } export declare function Ident>(mapping: Mapping): IIdent>; export declare function Ident(): IIdent; export declare function IsIdent(value: unknown): value is IIdent; export declare function ParseIdent(input: string): [] | [string, string];