import React from 'react'; /** * Props for {@link CatalogKindHeader}. * * @public */ export interface CatalogKindHeaderProps { /** * Entity kinds to show in the dropdown; by default all kinds are fetched from the catalog and * displayed. */ allowedKinds?: string[]; /** * The initial kind to select; defaults to 'component'. A kind filter entered directly in the * query parameter will override this value. */ initialFilter?: string; } /** * @public * @deprecated This component has been deprecated in favour of the EntityKindPicker in the list of filters. If you wish to keep this component long term make sure to raise an issue at github.com/backstage/backstage */ export declare function CatalogKindHeader(props: CatalogKindHeaderProps): React.JSX.Element;