import { StyledProps } from '@kuma-ui/system'; declare const defaultInputTag = "input"; type InputSpecificProps = {}; declare const isInputProps: (propName: unknown) => propName is InputSpecificProps; declare const inputDefaultProps: StyledProps; declare const inputHandler: (props: InputSpecificProps) => {}; export { InputSpecificProps, defaultInputTag, inputDefaultProps, inputHandler, isInputProps };