import * as React from 'react'; type KeyboardEventWindowOrElement = KeyboardEvent | React.KeyboardEvent; type ShortcutConfig = Partial; export declare const KeyboardShortcut: React.ForwardRefExoticComponent & { asChild?: boolean; config: { shortcut: ShortcutConfig; action: ({ event, shortcut }: { event: KeyboardEvent | React.KeyboardEvent; shortcut: ShortcutConfig; }) => void; }[]; targetWindow?: boolean; onKeyDown?: (e: KeyboardEventWindowOrElement) => void; } & React.RefAttributes>; declare const StyledKeyboardShortcutIndicator: React.ForwardRefExoticComponent, HTMLParagraphElement>, "size" | "noCapsize" | "weight" | "family"> & { size?: ("sm" | "md" | "lg" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | Partial>) | undefined; noCapsize?: (boolean | Partial>) | undefined; weight?: ("bold" | "normal" | Partial>) | undefined; family?: ("display" | "body" | "mono" | Partial>) | undefined; } & { as?: React.ElementType; }, "as"> & { as?: "blockquote" | "caption" | "dd" | "dt" | "figcaption" | "li" | "p" | "span" | "legend" | React.ComponentType | React.ElementType; }, "ref"> & React.RefAttributes, never> & { as?: React.ElementType; }>; type KeyboardShortcutIndicatorProps = React.ComponentProps; export declare const KeyboardShortcutIndicator: { (props: KeyboardShortcutIndicatorProps): React.JSX.Element; displayName: string; }; export {};