import React from 'react'; import { DarkModeProps } from '@leafygreen-ui/lib'; export interface SharedSkeletonProps { /** * Defines whether the loading "shimmer" animation renders * * @default true */ enableAnimations?: boolean; } export interface SkeletonProps extends SharedSkeletonProps, DarkModeProps, React.ComponentPropsWithoutRef<'div'> { /** * Determines the height of the skeleton * @default "default" */ size?: Size; } export declare const Size: { readonly Small: "small"; readonly Default: "default"; readonly Large: "large"; }; export type Size = (typeof Size)[keyof typeof Size]; //# sourceMappingURL=Skeleton.types.d.ts.map