import type { ExtractPropTypes, PropType } from 'vue';
export declare const basicHelpProps: {
    /**
     * Help text max-width
     * @default: 600px
     */
    maxWidth: {
        type: StringConstructor;
        default: string;
    };
    /**
     * Whether to display the serial number
     * @default: false
     */
    showIndex: {
        type: BooleanConstructor;
    };
    /**
     * Help text font color
     * @default: #ffffff
     */
    color: {
        type: StringConstructor;
        default: string;
    };
    /**
     * Help text font size
     * @default: 14px
     */
    fontSize: {
        type: StringConstructor;
        default: string;
    };
    /**
     * Help text list
     */
    placement: {
        type: StringConstructor;
        default: string;
    };
    /**
     * Help text list
     */
    text: {
        type: PropType<string | string[]>;
    };
};
export declare type BasicHelpProps = ExtractPropTypes<typeof basicHelpProps>;
