import React from "react"; export interface LoginButtonProps extends React.ButtonHTMLAttributes { method: "linkedin" | "github" | "facebook" | "other"; primary?: boolean; label?: string; } export declare const LoginButton: ({ method, primary, label, ...rest }: LoginButtonProps) => JSX.Element | null;