export interface KeyHint { key: string; description: string; } declare const formatKeyHint: ({ key, description }: KeyHint) => string; export { formatKeyHint };