UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

9 lines (8 loc) 334 B
import type { ReactNode } from 'react'; import type { ValueProps } from '../../types'; export type ValueBooleanProps = ValueProps<boolean> & { trueText?: ReactNode; falseText?: ReactNode; }; declare function BooleanComponent(props: ValueBooleanProps): import("react/jsx-runtime").JSX.Element; export default BooleanComponent;