/**
 * 用于触发操作的基础交互按钮。
 *
 * @remarks
 * 支持 primary、warning、danger、success、secondary、link 等多种类型，
 * 以及 small、middle、large 三种尺寸。可通过 `text` 设置文本，通过 `icon` 设置图标类名。
 *
 * @example
 * ```vue
 * <!-- 主要按钮 -->
 * <f-button type="primary" text="提交" @click="handleSubmit" />
 * <!-- 禁用状态 -->
 * <f-button type="default" text="取消" :disabled="true" />
 * ```
 *
 * @public
 */
declare const _default: import("vue").DefineComponent<{
    size: import("./button.props").ButtonSize;
    type: import("./button.props").ButtonType;
    visible: boolean;
    disabled: boolean;
    icon: string;
    text: string;
    customClass: string;
    customStyle: string;
    id?: string | undefined;
}, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, "click", import("vue").PublicProps, Readonly<{
    size: import("./button.props").ButtonSize;
    type: import("./button.props").ButtonType;
    visible: boolean;
    disabled: boolean;
    icon: string;
    text: string;
    customClass: string;
    customStyle: string;
    id?: string | undefined;
}> & Readonly<{}>, {
    size: import("./button.props").ButtonSize;
    type: import("./button.props").ButtonType;
    visible: boolean;
    disabled: boolean;
    icon: string;
    text: string;
    customClass: string;
    customStyle: string;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export default _default;
