import type { IdProps, TextSize, Size } from '../shared'; export interface SkeletonTextProps extends IdProps { /** * @private * Use to emphasize a word or a group of words. */ emphasis?: 'bold'; /** * Adjust the length of the text when no children are passed. */ inlineSize?: Extract; /** * Size of the text the skeleton replaces. */ size?: TextSize; } /** * SkeletonText is used to provide a low fidelity representation of text content before it appears on the page. */ export declare const SkeletonText: "SkeletonText" & { readonly type?: "SkeletonText" | undefined; readonly props?: SkeletonTextProps | undefined; readonly children?: true | undefined; }; //# sourceMappingURL=SkeletonText.d.ts.map