import * as React from "react"; import { IconShapes } from "../../icon/components/Icon"; export interface TextInputButtonProps extends React.ButtonHTMLAttributes { /** * The fill color of the icon inside the button */ color?: string; /** * The id of the SVG symbol we're rendering from a generated sprite */ shape: IconShapes; } declare const TextInputButton: ({ shape, color, ...other }: TextInputButtonProps) => React.JSX.Element; export default TextInputButton;