import * as React from 'react';
import { ButtonProps } from 'react-bootstrap';
declare type ButtonWithIconProps = {
    children: React.ReactNode;
    icon: React.ReactNode;
};
/**
 * A button with center-aligned content (typically text) that displays a left-aligned icon.
 * @param param0
 */
declare const ButtonWithIcon: React.FunctionComponent<ButtonWithIconProps & ButtonProps>;
export default ButtonWithIcon;
