/** * A class representing Pixels. * * @hidden * @internal */ export declare class Pixels { readonly value: number; /** * Parses a pixel string literal. * * @param text - The string color literal */ static parse(text: string): Pixels | undefined; /** * Constructs a [[Pixels]] literal * * @param value - The number of pixels. */ constructor(value: number); toJSON(): string; } //# sourceMappingURL=Pixels.d.ts.map