import { PropType } from 'vue';
import type { Fit } from './interface';
export declare const Props: {
    readonly src: StringConstructor;
    readonly alt: StringConstructor;
    readonly fit: {
        readonly type: PropType<Fit>;
        readonly validator: (v: Fit) => boolean;
    };
    readonly width: StringConstructor;
    readonly height: StringConstructor;
    readonly select: BooleanConstructor;
    readonly draggable: BooleanConstructor;
};
