UNPKG

@redocly/theme

Version:

Shared UI components lib

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