import type { ExtractPropTypes, PropType } from 'vue';
export declare type FlowType = number;
export declare const followProps: {
    id: {
        type: StringConstructor[];
        required: boolean;
    };
    type: {
        type: PropType<number>;
        required: boolean;
    };
    showIcon: {
        type: BooleanConstructor;
        default: boolean;
    };
    initStatusApi: {
        type: FunctionConstructor;
    };
    updateStatusApi: {
        type: FunctionConstructor;
    };
};
export declare type FollowProps = ExtractPropTypes<typeof followProps>;
