import type { NevoProps, NevoPropsAdapted } from "../types"; /** * Normalizes the provided `props` from the provided `propertyName`. * * @example * ```tsx * * ``` * * @param props Propertyes according to the Nevo pattern. * @param propertyName Name of the value property. * @returns */ export declare function normalize(props: NevoPropsAdapted, propertyName: K): NevoProps;