import type { JSXElement } from '@fluentui/react-components'; import type { KeytipProps } from './Keytip.types'; /** * Keytip component. Responsible for rendering an individual keytip, * is not supposed to be used directly, but is used by the Keytips component. * */ export declare const Keytip: { (props: KeytipProps): JSXElement | null; displayName: string; };