import React from 'react'; export declare type ButtonProps = { /** Indicates if the button should be have a colored outline and * transparent center or have a solid fill color. */ type: 'outlined' | 'solid'; /** Text of the button */ text: string; /** Action to take when the button is clicked. */ onClick: () => void; /** Color to use for outline/fill. Will accept any * valid CSS color definition. Defaults to LIGHT_BLUE */ color?: string; /** Button text color. Defaults to LIGHT_BLUE if type is * `outlined` or white if type is `solid`. */ textColor?: string; /** Additional styles to apply to the widget container. */ containerStyles?: React.CSSProperties; /** add disabled prop to disable button */ disabled?: boolean; }; /** A simple button with a few customization options. */ export default function Button({ type, text, onClick, color, textColor, containerStyles, disabled, }: ButtonProps): JSX.Element; //# sourceMappingURL=Button.d.ts.map