export declare const handleKeyPress: ({ $event: { code }, callback, }: {
    $event: KeyboardEvent;
    callback: () => void;
}) => void;
