import type { PropType, ExtractPropTypes } from 'vue';
import type { ExpandCardImageListType } from './interface';
export declare const Props: {
    readonly imageList: {
        readonly type: PropType<ExpandCardImageListType>;
        readonly default: () => string[];
    };
    readonly round: {
        readonly type: BooleanConstructor;
        readonly default: () => boolean;
    };
    readonly expandIndex: {
        readonly type: NumberConstructor;
        readonly default: () => number;
    };
    readonly color: {
        readonly type: StringConstructor;
        readonly default: () => string;
    };
    readonly width: {
        readonly type: PropType<string | number>;
        readonly default: () => string;
    };
    readonly height: {
        readonly type: PropType<string | number>;
        readonly default: () => string;
    };
};
export declare type ExpandCardPropsType = ExtractPropTypes<typeof Props>;
