Files
wdi-dashboard/node_modules/@chakra-ui/input/dist/input-element.d.mts

13 lines
653 B
TypeScript
Raw Normal View History

2024-08-16 15:06:52 +05:30
import * as _chakra_ui_system from '@chakra-ui/system';
import { HTMLChakraProps } from '@chakra-ui/system';
interface InputElementProps extends HTMLChakraProps<"div"> {
placement?: "left" | "right";
}
type InputLeftElementProps = Omit<InputElementProps, "placement">;
declare const InputLeftElement: _chakra_ui_system.ComponentWithAs<"div", InputLeftElementProps>;
type InputRightElementProps = Omit<InputElementProps, "placement">;
declare const InputRightElement: _chakra_ui_system.ComponentWithAs<"div", InputRightElementProps>;
export { InputElementProps, InputLeftElement, InputLeftElementProps, InputRightElement, InputRightElementProps };