/// import "./style.scss"; import { ButtonProps } from "@chakra-ui/core"; export interface AuthedButtonProps extends ButtonProps { loading?: boolean; loaderColor?: string; className?: string; children: any; onClick?: (e?: any) => void; rest?: Array; disabled?: boolean; onKeyDown?: any; divEl?: boolean; } declare const AuthedButton: ({ loading, loaderColor, className, children, onClick, disabled, onKeyDown, divEl, ...rest }: AuthedButtonProps) => JSX.Element; export default AuthedButton;