import type { Point } from '../../types';
export declare function getRotatedPoint(point: Point, angle: number): {
    x: number;
    y: number;
};
