import type { KeyStrokeConfig } from './keyStroke.types';
import type { ActionReturn } from 'svelte/action';
export declare const createKeyStroke: (params: KeyStrokeConfig) => VoidFunction;
export declare const useKeyStroke: (node: HTMLElement, parameters: Omit<KeyStrokeConfig, 'target'>) => ActionReturn<KeyStrokeConfig>;
