import * as React from "react"; type InputChromeProps = React.ComponentProps<"div"> & { start?: React.ReactNode; end?: React.ReactNode; startClassName?: string; endClassName?: string; }; declare function InputChrome({ start, end, startClassName, endClassName, className, children, ...props }: InputChromeProps): React.JSX.Element; export { InputChrome };