import type { IDimensionableProps } from '../../../Behaviors/Dimensionable'; import type { SkeletonShape } from '../../../Types/SkeletonShape'; /** * Represents the `ISkeletonElementProps` interface. * * @public */ export interface ISkeletonElementProps extends IDimensionableProps { /** * The shape of the Skeleton. */ shape: SkeletonShape; /** * Indicates that the component has an activated shimmer effect. */ shimmer: boolean; } //# sourceMappingURL=ISkeletonElementProps.d.ts.map