import type { CodegenShapeConfig } from './index'; export declare const SHAPE_NORMALIZE_IDENTIFIER = "normalize"; interface NormalizationParams { shapeConfig: CodegenShapeConfig; dynamicParamsIdentifier: string | null; functionIdentifier: string; } export declare function generateNormalizationFunction(params: NormalizationParams): string; export declare function generateNormalization(shapeConfig: CodegenShapeConfig): string; export {};