import React from 'react'; import { ButtonProps as ButtonPropsPrimitive } from '@modulz/primitives'; export declare type ButtonProps = ButtonPropsPrimitive & { variant?: 'blue' | 'primary' | 'red' | 'yellow' | 'secondary'; }; export declare const Button: React.ForwardRefExoticComponent & React.RefAttributes>;