import type { BehaviorTrackingProps } from '../../core/types/behavior-tracking-props.js'; import { type MenuIntentProps } from '../../navigation/menu/Intent.js'; /** * Accepted properties for the IntentButton.OpenWith. * @public */ export type OpenWithProps = Omit & BehaviorTrackingProps; /** * The `OpenWith` component renders an `IntentMenu` with a default label * that can't be changed. * @public */ export declare const OpenWith: (props: Omit & BehaviorTrackingProps & import("react").RefAttributes) => import("react").ReactElement | null;