/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ declare namespace APL { export class GraphicElement extends Deletable { public getId() : number; public getChildCount() : number; public getChildAt(index : number) : APL.GraphicElement; public getValue(key : number) : T; public getDirtyProperties() : number[]; public getType() : number; } }