import { Colors, Variants } from '../../styles'; import * as React from 'react'; interface Props { accept: string; label?: React.ReactNode; name: string; onChange: () => void; style?: React.CSSProperties; multiple?: boolean; type: 'button' | 'circle-image' | 'square-image'; src?: string; alignCenter?: boolean; variant: Variants; color: Colors; } declare const UploadButton: { (props: Props): JSX.Element; defaultProps: { type: string; variant: string; color: string; accept: string; onChange: (e: any) => void; }; }; export default UploadButton;