import React from 'react'; import { FlintCommandShortcut as FlintCommandShortcutElement } from '@getufy/flint-ui/command/flint-command'; /** * Displays a keyboard shortcut hint inside a command item. Slot the shortcut string (e.g. `⌘P`) as default slot content. * * @slot (default) - Shortcut text, e.g. `⌘P` or `Ctrl+K`. */ export interface FlintCommandShortcutProps extends React.HTMLAttributes { } export declare const FlintCommandShortcut: React.ForwardRefExoticComponent>;