export default ContainsPoint;
/**
 * Check to see if the Ellipse contains the given Point object.
 *
 * @function Phaser.Geom.Ellipse.ContainsPoint
 * @since 3.0.0
 *
 * @param {Phaser.Geom.Ellipse} ellipse - The Ellipse to check.
 * @param {(Phaser.Geom.Point|object)} point - The Point object to check if it's within the Circle or not.
 *
 * @return {boolean} True if the Point coordinates are within the circle, otherwise false.
 */
declare function ContainsPoint(ellipse: Phaser.Geom.Ellipse, point: (Phaser.Geom.Point | object)): boolean;
//# sourceMappingURL=ContainsPoint.d.ts.map