import { FlexboxProps } from "../Flex/type.mjs";
import { CSSProperties } from "react";

//#region src/Hotkey/type.d.ts
interface HotkeyProps extends Omit<FlexboxProps, 'children'> {
  classNames?: {
    kbdClassName?: string;
  };
  compact?: boolean;
  inverseTheme?: boolean;
  isApple?: boolean;
  keys: string;
  styles?: {
    kbdStyle?: CSSProperties;
  };
  variant?: 'filled' | 'outlined' | 'borderless';
}
//#endregion
export { HotkeyProps };
//# sourceMappingURL=type.d.mts.map