import type { Options } from 'ebec';
import { BaseError } from './base';
export declare class ParseError extends BaseError {
    constructor(message?: string | Options);
    static inputInvalid(): ParseError;
    static keyNotAllowed(name: string): ParseError;
    static keyInvalid(key: string): ParseError;
    static keyPathInvalid(key: string): ParseError;
    static keyValueInvalid(key: string): ParseError;
}
//# sourceMappingURL=parse.d.ts.map