import React from 'react'; interface ButtonProps { color?: 'primary' | 'secondary' | 'info' | 'success' | 'warning' | 'error' | 'neutral'; variant?: 'text' | 'outlined' | 'contained'; isDisabled?: boolean; isLoading?: boolean; startIcon?: string; endIcon?: string; size?: 'small' | 'medium' | 'large'; fullWidth?: boolean; onClick?: () => void; type?: 'submit'; children: React.ReactNode; } export declare const Button: React.FC; export {}; //# sourceMappingURL=index.d.ts.map