export type DiscardNoEntityMatchBehavior = 'DISCARD'; export type ThrowNoEntityMatchBehavior = 'THROW'; export type NoEntityMatchBehavior = DiscardNoEntityMatchBehavior | ThrowNoEntityMatchBehavior; export declare const noEntityMatchBehaviorSet: Set; export declare const parseNoEntityMatchBehavior: (noEntityMatchBehavior: NoEntityMatchBehavior) => NoEntityMatchBehavior;