@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
11 lines (10 loc) • 324 B
TypeScript
import { PositionedPeriod } from "../utils/types.internal";
interface RowContextProps {
periods: PositionedPeriod[];
id: string;
active: boolean;
index: number;
}
export declare const RowContext: import("react").Context<RowContextProps>;
export declare const useRowContext: () => RowContextProps;
export {};