@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
11 lines (10 loc) • 378 B
TypeScript
import type { ReactNode } from 'react';
import type { Path, ValueProps } from '../../types';
export type ValueProviderProps = {
children: ReactNode;
overwriteProps?: {
[key: Path]: ValueProps;
};
} & ValueProps;
declare function ValueProviderProvider(props: ValueProviderProps): import("react/jsx-runtime").JSX.Element;
export default ValueProviderProvider;