You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
579 B

import type { ExtractPropTypes } from 'vue';
import type Bar from './bar.vue';
export declare const barProps: {
readonly always: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
readonly minSize: {
readonly type: import("vue").PropType<number>;
readonly required: true;
readonly validator: ((val: unknown) => boolean) | undefined;
__epPropKey: true;
};
};
export declare type BarProps = ExtractPropTypes<typeof barProps>;
export declare type BarInstance = InstanceType<typeof Bar>;