import { useWalletMultiButton } from "./base/index.cjs";
import type { ButtonProps } from "./Button.cjs";
type Props = ButtonProps & {
    labels: Omit<Record<ReturnType<typeof useWalletMultiButton>['buttonState'], string>, 'connected' | 'disconnecting'> & {
        'copy-address': string;
        'copied': string;
        'change-wallet': string;
        'disconnect': string;
    };
    height?: string;
    primaryColor?: string;
    radius?: string;
    bgColor?: string;
    textColor?: string;
    hoverBgColor?: string;
    dropdownBgColor?: string;
    dropdownTextColor?: string;
    dropdownHoverBgColor?: string;
};
export declare function BaseWalletMultiButton({ children, labels, height, primaryColor, radius, bgColor, textColor, hoverBgColor, dropdownBgColor, dropdownTextColor, dropdownHoverBgColor, ...props }: Props): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=BaseWalletMultiButton.d.cts.map