import type { PropType } from 'vue'; import { ExtractPropTypes } from 'vue'; export declare const helpProps: { readonly maxWidth: { readonly type: PropType; readonly default: "600px"; }; readonly showIndex: { readonly type: BooleanConstructor; readonly default: false; }; readonly color: { readonly type: PropType; readonly default: ""; }; readonly fontSize: { readonly type: StringConstructor; readonly default: "14px"; }; readonly placement: { readonly type: StringConstructor; readonly default: "right"; }; readonly text: { readonly type: PropType; }; }; export type HelpProps = ExtractPropTypes;