import * as React from "react"; import { TextInputWithIconProps } from "./TextInputWithIcon"; import { TextInputButtonProps } from "../../textInputButton/components/TextInputButton"; export interface TextInputWithButtonsProps extends Omit { /** * An array of TextInputButton components to render at the end of the input */ buttons: Array>; } declare const TextInputWithButtons: ({ type, appearance, showInputLabel, ...props }: TextInputWithButtonsProps) => React.JSX.Element; export default TextInputWithButtons;