import { type NodeRect } from '../../utils';
import { type StyleValue } from 'vue';
export interface ResizeSensorProps {
    rootStyle?: StyleValue;
    rootClass?: string;
    initial?: boolean;
    threshold?: number;
}
export declare const defaultResizeSensorProps: {
    threshold: number;
};
export interface ResizeSensorSlots {
    default?(props: Record<string, never>): any;
}
export interface ResizeSensorEmits {
    (e: 'resize', value: NodeRect): void;
}
export interface ResizeSensorExpose {
}
