export interface CanvasInteractionOptions { selection?: 'normal' | 'keep'; cellClick?: 'normal' | 'stop'; editor?: 'normal' | 'never' | 'open-on-click'; contextMenu?: 'normal' | 'keep-selection' | 'none'; } export type CanvasInteractionConfig = CanvasInteractionOptions; export type ResolvedCanvasInteractionConfig = Required; export declare function normalizeCanvasInteraction(config: CanvasInteractionConfig | undefined): ResolvedCanvasInteractionConfig | undefined; export declare function createNormalCanvasInteraction(): ResolvedCanvasInteractionConfig;