import { L as LoadableState } from '../types-5EvFF6wb.cjs'; import 'keyweaver'; import 'react'; type SkeletonState = {} & LoadableState; /** * A special state that remains permanently in a pending state. * This state never resolves, its {@link SkeletonState.isLoaded isLoaded} is always `false`, and it triggers Suspense indefinitely. * * @example * ```jsx * const Card = ({ asyncState }) => ( * } * /> * ); * ``` */ declare const SKELETON_STATE: SkeletonState; export { type SkeletonState, SKELETON_STATE as default };