import type { ViewProps } from "@tarojs/components/types/View"; import type { CSSProperties, PropsWithChildren } from "react"; interface UsePlaceholderOptions { className?: string; } export interface PlaceholderProps extends PropsWithChildren { style?: CSSProperties; } export default function usePlaceholder(contentRef: any, { className }?: UsePlaceholderOptions): ({ className: classNameProp, style, children, ...restProps }: PlaceholderProps) => JSX.Element; export {};