import { SkeletonProps, TypographyProps } from '@mui/material'; import { PropsWithChildren } from 'react'; export interface TypographySkeletonProps extends PropsWithChildren { /** * Loading state */ isLoading: boolean; /** * Empty text when there is no data */ emptyText?: string; /** * Typography props * @default { color: "text.secondary", variant: "body2" } */ typographyProps?: TypographyProps; /** * Skeleton props */ skeletonProps?: SkeletonProps; } declare const TypographySkeleton: ({ isLoading, children, emptyText, typographyProps, skeletonProps, }: TypographySkeletonProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default TypographySkeleton;