/*! * Ecctrl * https://github.com/pmndrs/ecctrl * * SPDX-FileCopyrightText: 2023-2026 Erdong Chen * SPDX-License-Identifier: MIT */ import React from "react"; declare const _default: React.MemoExoticComponent<(props: VirtualButtonProps) => React.JSX.Element>; export default _default; export interface VirtualButtonProps extends React.HTMLAttributes { id: string; label?: string; buttonWrapperStyle?: React.CSSProperties; buttonCapStyle?: React.CSSProperties; props?: React.HTMLAttributes; }