import { Props } from './types';
import { ComputedRef } from 'vue';
export declare const useHandle: (props: Props) => {
    rect: ComputedRef<{
        viewBoxSize: string;
        width: number;
        height: number;
        type: string;
        size: number;
        family: string;
        color: string;
        background: string;
        text: string;
    }>;
    viewBox: ComputedRef<{
        width: number;
        height: number;
    }>;
};
