@intersect.mbo/govtool-delegation-pillar
Version:
Delegation Pillar of the GovTool project
9 lines (8 loc) • 340 B
TypeScript
import { PropsWithChildren } from 'react';
type DrepDetailsInfoItemProps = PropsWithChildren & {
label: string;
text?: string | null;
dataTestId: string;
};
export declare const DRepDetailsInfoItem: ({ children, label, text, dataTestId, }: DrepDetailsInfoItemProps) => import("react/jsx-runtime").JSX.Element | null;
export {};