/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { PropType } from 'vue';
/**
 * @hidden
 */
export interface ResizeHandlersProps {
    direction: string;
    onResize?: (e: any, args: {
        end: boolean;
        direction: any;
    }) => void;
    onPress?: (e: any) => void;
    rtl: boolean;
}
/**
 * @hidden
 */
declare const ResizeHandlers: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    direction: PropType<string>;
    rtl: PropType<boolean>;
    onResize: PropType<(e: any, args: {
        end: boolean;
        direction: any;
    }) => void>;
    onPress: PropType<(e: any) => void>;
}>, {}, {}, {
    handleClass(): string;
    dirStyles(): {
        top: number;
        width: string;
        left: number;
        right: string;
        height?: undefined;
    } | {
        top: number;
        width: string;
        right: number;
        left: string;
        height?: undefined;
    } | {
        left: number;
        height: string;
        top?: undefined;
        width?: undefined;
        right?: undefined;
    } | {
        width: string;
        height: string;
        right: string;
        left: number;
        top?: undefined;
    } | {
        width: string;
        height: string;
        right: number;
        left: string;
        top?: undefined;
    } | {
        top?: undefined;
        width?: undefined;
        left?: undefined;
        right?: undefined;
        height?: undefined;
    };
    handleStyle(): any;
}, {
    handleResize(event: any, isEnd: boolean, direction: any): void;
    handlePress(event: any): void;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    direction: PropType<string>;
    rtl: PropType<boolean>;
    onResize: PropType<(e: any, args: {
        end: boolean;
        direction: any;
    }) => void>;
    onPress: PropType<(e: any) => void>;
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { ResizeHandlers };
