import { type Action, type UnknownAction } from '../actions'; export type Point = { x: number; y: number; }; type State = { pointer: Point | null; }; export declare function getPointer(state: State): Point | null; export declare function reducer(state: State | undefined, action: Action | UnknownAction): State; export {}; //# sourceMappingURL=pointer.d.ts.map