@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
13 lines (12 loc) • 355 B
TypeScript
import React, { ReactNode } from "react";
import { Period } from "./types.external";
type ParsedChild = {
label?: string;
icon?: React.ReactNode;
headingTag: string;
periods: Omit<Period, "id" | "endInclusive">[];
restProps: any;
ref: any;
};
export declare const parseRows: (rowChildren: ReactNode[]) => ParsedChild[];
export {};