import type { NullParser, UndefinedParser } from './literal.types'; /** * Matches a string undefined to the undefined value */ export declare const parseUndefined: UndefinedParser; /** * Matches a null string to the null value. */ export declare const parseNull: NullParser;