export interface UserButtonProps {
    profileLabel?: string;
    signOutLabel?: string;
    className?: string;
}
export declare function UserButton({ profileLabel, signOutLabel, className, }: UserButtonProps): import("react").DetailedReactHTMLElement<{
    className: string;
}, HTMLElement> | null;
