import * as React from 'react'; import type { SkeletonElementProps } from './Element'; export interface SkeletonNodeProps extends Omit { fullSize?: boolean; children?: React.ReactNode; } declare const SkeletonNode: React.FC; export default SkeletonNode;