import { type PropsWithChildren } from "react"; import type { DefaultNDSThemeType } from "../theme"; import type { Breakpoints } from "../theme/theme.type"; import type { Density, Layout } from "./lib/types"; interface DescriptionListContextProps { descriptionTermMaxWidth: string; layout: Layout; autoLayoutBreakpoint: string; showDivider: boolean; density: Density; fontSize: keyof DefaultNDSThemeType["fontSizes"]; lineHeight: keyof DefaultNDSThemeType["lineHeights"]; columns?: number | Partial>; groupMinWidth?: string; } export declare const DescriptionListProvider: ({ children, ...contextProps }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; export declare const useDescriptionListContext: () => DescriptionListContextProps; export {};