import type { KeybindRecorderProps } from "discord-client-types/discord_app/components/common/KeyRecorder"; import type * as Design from "discord-client-types/discord_app/design/web"; import type { KeyCombo } from "discord-client-types/discord_app/lib/GlobalShortcut"; import "./KeyRecorder.css"; interface CustomKeyRecorderProps extends Omit, Pick { value?: KeyCombo; clearable?: boolean; } export type CustomKeyRecorderType = React.FC; export declare function CustomKeyRecorder({ value, onChange, clearable, disabled, ...props }: CustomKeyRecorderProps): React.ReactElement; export {};