import { ExtractPropTypes, PropType, Component } from 'vue';

export declare const bulletProps: {
    readonly sign: StringConstructor;
    readonly icon: PropType<Component>;
    readonly color: StringConstructor;
    readonly disabled: BooleanConstructor;
};
export type BulletProps = ExtractPropTypes<typeof bulletProps>;
