import type { ButtonProps } from '../../button'; import type { UseButtonReturn } from './interface'; export * from './interface.d'; /** * button 组件方法封装 * * @author Tyh2001 * @param { Object } prop prop 列表 * @returns { Object } */ export declare const useButton: (prop: ButtonProps) => UseButtonReturn;