import { FC, ReactNode } from "react"; import { FlexProps } from "../Flex"; import { TextProps } from "../Text"; /** * Creates a skeleton animation for a component. * * @example * * * Foo * * */ export declare const Skeleton: FC<{ children: ReactNode; }>; export declare const SkeletonText: FC; export declare const SkeletonBox: FC;