import React from 'react'; export declare type ButtonProps = { children?: React.ReactNode; variant?: 'primary' | 'secondary' | 'tertiary'; disabled?: boolean; icon?: React.ReactNode; roundedIcon?: boolean; arrow?: boolean; download?: boolean; href?: string; onClick?: (e: any) => void; };