import { type StyleValue } from 'vue';
export interface FloatingPanelProps {
    rootStyle?: StyleValue;
    rootClass?: string;
    height?: number;
    anchors?: number[];
    duration?: number;
    contentDraggable?: boolean;
    safeAreaInsetBottom?: boolean;
}
export declare const defaultFloatingPanelProps: {
    duration: number;
    contentDraggable: boolean;
    safeAreaInsetBottom: boolean;
};
export interface FloatingPanelSlots {
    default?(props: Record<string, never>): any;
}
export interface FloatingPanelEmits {
    (e: 'update:height', value: number): void;
    (e: 'height-change', value: number): void;
}
export interface FloatingPanelExpose {
}
