import type { ReactElement } from "react"; import type { SkeletonProps } from "../../Skeleton/Skeleton"; import { type TextProps } from "./Text"; export type TextSkeletonProps = { lines?: number; inline?: boolean; } & Pick & Pick; export declare function TextSkeleton({ lines, size, width, inline, "data-e2e-test-id": dataE2eTestId, }: TextSkeletonProps): ReactElement;