UNPKG

@redocly/theme

Version:

Shared UI components lib

7 lines (6 loc) 206 B
import type { JSX } from 'react'; export type FilterInputProps = { value: string; onChange: (newValue: string) => void; }; export declare function FilterInput(props: FilterInputProps): JSX.Element;