import { NativeDeletable } from "./NativeDeletable";
export interface NativeIntRect extends NativeDeletable {
    left: number;
    top: number;
    right: number;
    bottom: number;
}
