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