import React from 'react';
import { ISkeletonStandAlone } from './types/skeleton';
/**
 * @description
 * Skeleton coponents is a loading component that can be used to show a loading state of a component.
 * @param {React.PropsWithChildren<ISkeletonStandAlone>} props
 * @returns {JSX.Element}
 */
export declare const SkeletonStandAlone: React.ForwardRefExoticComponent<ISkeletonStandAlone & React.RefAttributes<HTMLDivElement>>;
