import { Base, Type } from "igniteui-webcomponents-core"; import { LinearGraphScaleFrame } from "./LinearGraphScaleFrame"; import { LinearGraphBackingFrame } from "./LinearGraphBackingFrame"; import { LinearGraphRectFrame } from "./LinearGraphRectFrame"; /** * @hidden */ export declare abstract class LinearGraphFrame extends Base { static $t: Type; constructor(); abstract get c(): LinearGraphScaleFrame; abstract set c(a: LinearGraphScaleFrame); a: LinearGraphBackingFrame; b: LinearGraphRectFrame; d(a: number, b: LinearGraphFrame, c: LinearGraphFrame): void; }