UNPKG

@redocly/portal-legacy-ui

Version:

Library of legacy portal UI components

16 lines (15 loc) 348 B
import { JSX } from 'react'; export type Version = { version: string; label: string; link: string; default: boolean; active: boolean; folderId: string; }; type DropdownProps = { items: Version[]; activeItem: Version; }; export declare function Dropdown({ items, activeItem }: DropdownProps): JSX.Element; export {};