import { AttributeWithCacheKey } from '../../../attribute-with-cache-key'; import { OperatorImplementation, OperatorInitialization } from '../../../operators'; export interface BatchNormalizationAttributes extends AttributeWithCacheKey { epsilon: number; momentum: number; spatial: number; } export declare const batchNormalization: OperatorImplementation; export declare const parseBatchNormalizationAttributes: OperatorInitialization;