import { PropType } from 'vue';
import type { Fit } from './interface';
export declare const Props: {
    readonly src: StringConstructor;
    readonly alt: StringConstructor;
    readonly size: {
        readonly type: NumberConstructor;
        readonly default: () => number;
    };
    readonly fit: {
        readonly type: PropType<Fit>;
        readonly validator: (v: Fit) => boolean;
    };
    readonly round: BooleanConstructor;
    readonly border: BooleanConstructor;
    readonly select: BooleanConstructor;
    readonly draggable: BooleanConstructor;
    readonly errorIcon: StringConstructor;
};
