14 lines
381 B
TypeScript
14 lines
381 B
TypeScript
import * as _chakra_ui_system from '@chakra-ui/system';
|
|
import { HTMLChakraProps } from '@chakra-ui/system';
|
|
|
|
interface EditableInputProps extends HTMLChakraProps<"input"> {
|
|
}
|
|
/**
|
|
* EditableInput
|
|
*
|
|
* The input used in the `edit` mode
|
|
*/
|
|
declare const EditableInput: _chakra_ui_system.ComponentWithAs<"input", EditableInputProps>;
|
|
|
|
export { EditableInput, EditableInputProps };
|