UNPKG

@redocly/theme

Version:

Shared UI components lib

9 lines (8 loc) 273 B
import type { JSX, PropsWithChildren } from 'react'; export type FilterOptionProps = PropsWithChildren<{ role?: string; key?: string; onClick?: () => void; className?: string; }>; export declare function FilterOption(props: FilterOptionProps): JSX.Element;