import React from 'react'; /** @public */ export type CatalogReactEntityOwnerPickerClassKey = 'input'; /** * @public */ export type EntityOwnerPickerProps = { mode?: 'owners-only' | 'all'; }; /** @public */ export declare const EntityOwnerPicker: (props?: EntityOwnerPickerProps) => React.JSX.Element | null;