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