/** * Component that indicates whether an entity should maintain its aspect ratio during scaling operations. * When this component is present, the entity will scale proportionally to maintain its original width/height ratio. */ export declare class LockAspectRatio { /** * Whether the aspect ratio is locked. Default is true when the component is present. */ enabled: boolean; constructor(enabled?: boolean); }