import type { ExtractPropTypes } from 'vue'; import type Bar from './bar.vue'; export declare const barProps: { always: { type: BooleanConstructor; default: boolean; }; minSize: { type: NumberConstructor; required: true; }; hideAfter: { type: NumberConstructor; default: number; }; }; export type BarProps = ExtractPropTypes; export type BarInstance = InstanceType & unknown;