UNPKG

@redocly/theme

Version:

Shared UI components lib

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