/*! * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ export declare class StyleLoader { private readonly loadStyles; private static instance; private constructor(); load: (stylePath: string) => Promise; static getInstance(loadStyles?: boolean): StyleLoader; destroy: () => void; }