import React from 'react'; export declare type LaunchLink = { id: string; text: string | React.ReactNode; href?: string; onClick?: React.MouseEventHandler; label?: boolean; noIcon?: boolean; icon?: React.ReactNode; disabled?: boolean; }; export declare function AcmLaunchLink(props: { links?: LaunchLink[]; }): JSX.Element | null;