import type { IDisableableProps } from '../../../Behaviors/Disableable'; import type { KeyName, ModifierKeys } from '../../../Types/Key'; /** * Represents the `IKbdShortcutElementProps` interface. * * @public */ export interface IKbdShortcutElementProps extends IDisableableProps { gesture: { key: KeyName | string; modifiers: ModifierKeys; } | null; } //# sourceMappingURL=IKbdShortcutElementProps.d.ts.map