import { ReactNode, FunctionComponent } from 'react';
interface ButtonProps {
    id?: string;
    type: 'button' | 'submit' | 'reset';
    children?: ReactNode | ReactNode[];
    className?: string;
    onClick?: () => void;
    disabled?: boolean;
    leftIcon?: string;
    rightIcon?: string;
    iconColor?: string;
}
/**
 * Button component
 *
 * @param {*} props
 * @returns
 */
declare const Index: FunctionComponent<ButtonProps>;
export default Index;
