import React from "react"; import { ColorPickerProps } from "../ColorPicker"; import { TextInputProps } from "../TextInput"; type TextInputWithColorPickerProps = { value?: string; onChange?: (value: string) => void; textInputProps?: TextInputProps; colorPickerProps?: ColorPickerProps; }; export default function TextInputWithColorPicker({ value, onChange, textInputProps, colorPickerProps, }: TextInputWithColorPickerProps): React.JSX.Element; export {};