import type { ButtonProps } from "./Button.cjs";
declare const LABELS: {
    readonly 'change-wallet': "Change wallet";
    readonly connecting: "Connecting ...";
    readonly 'copy-address': "Copy address";
    readonly copied: "Copied";
    readonly disconnect: "Disconnect";
    readonly 'has-wallet': "Connect";
    readonly 'no-wallet': "Connect Wallet";
};
interface UserButtonProps extends ButtonProps {
    height?: string;
    primaryColor?: string;
    radius?: string;
    bgColor?: string;
    textColor?: string;
    hoverBgColor?: string;
    dropdownBgColor?: string;
    dropdownTextColor?: string;
    dropdownHoverBgColor?: string;
    labels?: Partial<Record<keyof typeof LABELS, string>>;
}
export declare function UserButton({ labels, ...props }: UserButtonProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=UserButton.d.cts.map