siegel
Version:
Web application development ecosystem
13 lines (12 loc) • 402 B
TypeScript
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 };