import React from 'react'; /** * Props for {@link EntityKindPicker}. * * @public */ export interface EntityKindPickerProps { /** * Entity kinds to show in the dropdown; by default all kinds are fetched from the catalog and * displayed. */ allowedKinds?: string[]; initialFilter?: string; hidden?: boolean; } /** @public */ export declare const EntityKindPicker: (props: EntityKindPickerProps) => React.JSX.Element | null;