/**
 * @category Interfaces
 */
export interface IBounds {
    bottom: number;
    left: number;
    right: number;
    top: number;
}
