import type { CSS } from "../theme/stitches.config"; import React from "react"; import { ImageSkeletonVariantsProps } from "./image.styles"; interface Props { opacity: number; as?: keyof JSX.IntrinsicElements; css?: CSS; className?: string; } declare const defaultProps: { opacity: number; className: string; }; export declare type ImageSkeletonProps = Props & typeof defaultProps & ImageSkeletonVariantsProps; declare const _default: React.ComponentType & Omit>; export default _default;