import React from 'react'; export type Props = { value: string[] | undefined; onChange: (value: string[] | undefined) => void; }; export declare const SelectedKindsFilter: ({ value, onChange }: Props) => React.JSX.Element;