import { ThemeSize } from "../../theme/types.js"; import { SkeletonShape } from "../../styles/skeleton.js"; import { SkeletonProps } from "@soybeanjs/headless/skeleton"; import { ClassValue } from "@soybeanjs/headless/types"; //#region src/components/skeleton/types.d.ts /** * Properties for the Skeleton component. */ interface SkeletonProps$1 extends SkeletonProps { /** * Additional class names applied to the root element. */ class?: ClassValue; /** * Visual size of the component. */ size?: ThemeSize; /** * Whether the skeleton should have an animation effect. Defaults to `true`. */ animated?: boolean; /** * Shape of the component. */ shape?: SkeletonShape; } //#endregion export { SkeletonProps$1 as SkeletonProps };