import * as React from "react"; import { type CSSProperties } from "react"; import type { ViewProps } from "@tarojs/components/types/View"; export interface FloatingPanelProps extends ViewProps { style?: CSSProperties; height?: number; anchors?: number[]; duration?: number; contentDraggable?: boolean; safeAreaInsetBottom?: boolean; handleChange?: (height: number) => void; } export interface FloatingPanelInstance { setHeight: (height: number) => void; } declare const FloatingPanel: React.ForwardRefExoticComponent & React.RefAttributes>; export default FloatingPanel;