import { ListType } from "@etsoo/shared";
import { ButtonPopupRadioProps } from "@etsoo/materialui";
import { CoreApiService } from "../../dto/org/CoreApiService";
export type ButtonApiServicesProps = Omit<ButtonPopupRadioProps<ListType>, "labelField" | "loadData" | "value" | "onValueChange"> & {
    /**
     * Value
     * 值
     */
    value?: CoreApiService;
    /**
     * Value change handler
     * @param value New value
     */
    onValueChange: (value: CoreApiService) => void;
};
export declare function ButtonApiServices(props: ButtonApiServicesProps): import("react/jsx-runtime").JSX.Element;
