import { PropsWithChildren, ReactNode } from 'react'; interface SkeletonProps extends PropsWithChildren { type?: "bar" | "rows" | "media"; aspectRatio?: string | number; height?: string | number; hasContent: boolean; backgroundColor?: string; color?: string; title?: ReactNode; customContainer?: ReactNode; fill?: boolean; } declare const PreviewSkeleton: ({ children, customContainer, title, type, aspectRatio, height: passedHeight, hasContent, color, backgroundColor, fill, }: SkeletonProps) => import("react/jsx-runtime").JSX.Element | null; export { PreviewSkeleton }; //# sourceMappingURL=PreviewSkeleton.d.ts.map