import type { Component, Props } from './types';
declare const componentID = "-ui-input";
declare const getDefaultState: () => {
    isTouched: boolean;
    isFocused: boolean;
};
declare const Input: import("../_internals/types").CoreUIComponent<Props, NonNullableProps<{
    theme: Props["theme"];
}>>;
export default Input;
export { componentID, getDefaultState };
export type { Component, Props };
