import { Bounds } from './features/Bounds'; import { Point } from './features/Point'; /** * Grid Label */ export declare class Label { /** * Name */ private name?; /** * Center point */ private center?; /** * Bounds */ private bounds?; /** * Constructor * * @param name * name * @param center * center point * @param bounds * bounds */ constructor(name: string, center: Point, bounds: Bounds); /** * Get the name * * @return name */ getName(): string | undefined; /** * Set the name * * @param name * name */ setName(name?: string): void; /** * Get the center point * * @return center point */ getCenter(): Point | undefined; /** * Set the center point * * @param center * center point */ setCenter(center?: Point): void; /** * Get the bounds * * @return bounds */ getBounds(): Bounds | undefined; /** * Set the bounds * * @param bounds * bounds */ setBounds(bounds?: Bounds): void; } //# sourceMappingURL=Label.d.ts.map