UNPKG

@redocly/theme

Version:

Shared UI components lib

12 lines (11 loc) 333 B
import type { JSX } from 'react'; export type ReasonsProps = { onChange: (value: string[]) => void; settings: { label?: string; component?: string; items: string[]; }; className?: string; }; export declare function Reasons({ settings, onChange, className }: ReasonsProps): JSX.Element | null;