import { SkeletonPrimitiveProps } from '../Primitive/Skeleton.Primitive'; export type SkeletonSizedProps = Omit & { height?: string; width?: string; isCircle?: boolean; }; declare const SkeletonSized: import("react").ForwardRefExoticComponent & { height?: string; width?: string; isCircle?: boolean; } & import("react").RefAttributes>; export default SkeletonSized;