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