import React from "react"; export declare type CaButtonTagProps = React.ButtonHTMLAttributes & React.AnchorHTMLAttributes & { children?: React.ReactNode; className?: string; onClick?: (event: React.MouseEvent) => void; disabled?: boolean; intent?: "primary" | "secondary"; type?: "button" | "submit" | "reset"; fill?: boolean; }; declare function CaButtonTag({ children, className, onClick, disabled, intent, href, type, fill, ...props }: CaButtonTagProps): JSX.Element; declare namespace CaButtonTag { var defaultProps: { intent: string; outlined: boolean; }; } export default CaButtonTag;