UNPKG

@carbon/ibm-products-web-components

Version:
23 lines 879 B
/** * @license * * Copyright IBM Corp. 2025 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ import { LitElement } from 'lit'; import '@carbon/web-components/es/components/skeleton-text/index.js'; import '@carbon/web-components/es/components/skeleton-placeholder/index.js'; import { BigNumberSizeValues } from './constants'; /** * @element c4p-big-number-skeleton * Note: This component is only used within c4p-big-number. It displays a skeleton version while content is loading (handled by the c4p-big-number prop `loading'). */ declare class CDSBigNumberSkeleton extends LitElement { size?: BigNumberSizeValues; render(): import("lit-html").TemplateResult<1>; static styles: any; } export default CDSBigNumberSkeleton; //# sourceMappingURL=big-number-skeleton.d.ts.map