@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
10 lines (9 loc) • 353 B
TypeScript
import type { Path } from '../../types';
import type { SectionProps } from '.';
export type SectionContextState = {
path?: Path;
props?: SectionProps;
errorPrioritization?: Array<'fieldSchema' | 'sectionSchema' | 'contextSchema'>;
};
declare const SectionContext: import("react").Context<SectionContextState>;
export default SectionContext;