export declare const DebugTouchPoint: ({ diameter, x, y, color, }: {
    diameter?: number | undefined;
    x?: number | undefined;
    y?: number | undefined;
    color?: string | undefined;
}) => JSX.Element;
export declare const DebugRect: ({ height, x, y, color, }: {
    height: number;
    x: number;
    y: number;
    color: string;
}) => JSX.Element;
