export declare enum ParseMode { Strict = "strict", Extended = "extended", Loose = "loose" } declare const StrictOptions: { allowMethods: boolean; allowComments: boolean; }; declare type OptionFlags = typeof StrictOptions; export declare type Options = { mode: ParseMode; } & OptionFlags; export declare function buildOptions(options?: Partial): Options; export {};