import type { ViewProps } from "@tarojs/components/types/View"; import { type PropsWithChildren } from "react"; import type { PlaceholderProps } from "../placeholder"; import { type SafeAreaPosition } from "../safe-area"; import type { FixedViewPosition } from "./fixed-view.shared"; interface FixedViewProps extends PropsWithChildren { position?: boolean | FixedViewPosition; safeArea?: SafeAreaPosition; nativeSafeTop?: boolean; placeholder?: boolean | string | Omit; } declare function FixedView(props: FixedViewProps & T): JSX.Element; export default FixedView;