export declare type WarnType = 'option' | 'value'; export declare type WarningArgs = { state: Set; type: WarnType; field: string; reason: string; context: string; payload: unknown; entityLabel?: string; }; export declare const normalizeToString: (value: unknown) => string | null; export declare const warnInvalidData: ({ state, type, field, reason, context, payload, entityLabel }: WarningArgs) => void; //# sourceMappingURL=fieldNormalization.d.ts.map