import { ButtonProps, InputProps } from '@nextui-org/react'; import React from 'react'; export interface NUIPSnapInputProps extends InputProps { onSnap?: (value: string) => void; snapButtonProps?: ButtonProps; } declare const NUIPSnapInput: (props: NUIPSnapInputProps) => React.JSX.Element; export default NUIPSnapInput;