interface ButtonCustomizations {
    minWidth?: string;
    height?: string;
    borderRadius?: string;
    backgroundColor?: string;
    color?: string;
    hoverBackgroundColor?: string;
    hoverTextColor?: string;
    marginTop?: string;
    fontSize?: string;
    fontFamily?: string;
}
interface ProfileButtonProps {
    text?: string;
    handleClick: () => void;
    customizations?: ButtonCustomizations;
}
declare const ProfileButton: ({ text, handleClick, customizations }: ProfileButtonProps) => import("react/jsx-runtime").JSX.Element;
export default ProfileButton;
//# sourceMappingURL=profileButton.d.ts.map