import * as React from 'react'; export declare const skeletonAnimation: { animationName: string; animationDelay: string; animationTimingFunction: string; animationDuration: string; animationFillMode: string; }; interface SkeletonProps { /** * Spread these props at the root of your skeleton to handle animation logic */ rootProps: { style: React.CSSProperties; }; } export type SkeletonComponent
= React.ComponentType
;
/**
* Use this to attach a skeleton as a static property on the component.
* e.g. if you render a component with ` ) => C & {
Skeleton: (props: P) => import("react/jsx-runtime").JSX.Element;
};
export {};