import type { ViewProps } from "@tarojs/components/types/View"; import * as React from "react"; import { type CSSProperties, type ReactNode } from "react"; export interface PopupBackdropProps extends ViewProps { style?: CSSProperties; open?: boolean; lock?: boolean; duration?: number; closeable?: boolean; } declare function PopupBackdrop(props: PopupBackdropProps): JSX.Element; declare namespace PopupBackdrop { var displayName: string; } export default PopupBackdrop; export declare function usePopupBackdrop(backdrop?: ReactNode, options?: boolean | Omit): string | number | boolean | React.ReactElement> | React.ReactFragment | null;