import React from 'react'; /** @public */ export type CatalogReactEntityNamespacePickerClassKey = 'input'; /** * Props for {@link EntityNamespacePicker}. * * @public */ export interface EntityNamespacePickerProps { initiallySelectedNamespaces?: string[]; } /** @public */ export declare const EntityNamespacePicker: (props: EntityNamespacePickerProps) => React.JSX.Element;