/// import "../AuthedButton/style.scss"; import { ButtonProps } from "@chakra-ui/core"; interface IPrimaryButtonProps extends ButtonProps { text?: string; loaderColor?: string; activeColor?: string; } declare const _default: ({ text, loaderColor, activeColor, ...props }: IPrimaryButtonProps) => JSX.Element; export default _default;