import { CSSProperties, MouseEventHandler, ReactNode } from 'react'; interface buttonType { children?: ReactNode; style?: CSSProperties | undefined; onClick?: MouseEventHandler | undefined; disabled?: boolean; className?: string; type?: "button" | "submit" | "reset"; attr?: string; } export declare const PrimaryButton: ({ disabled, children, style, onClick, className, type, attr }: buttonType) => import("react/jsx-runtime").JSX.Element; export {};