1 | import { IInput } from "../Input";
|
2 | import * as React from "react";
|
3 | import { BoxProps } from "../Box";
|
4 | import { Omit } from "../common-types";
|
5 |
|
6 | interface IInputElement {
|
7 | |
8 |
|
9 |
|
10 | size?: IInput["size"];
|
11 | |
12 |
|
13 |
|
14 |
|
15 | placement?: "left" | "right";
|
16 | |
17 |
|
18 |
|
19 | children: React.ReactNode;
|
20 | |
21 |
|
22 |
|
23 |
|
24 | disabledPointerEvents?: boolean;
|
25 | }
|
26 |
|
27 | type IInputElementProps = IInputElement & BoxProps;
|
28 |
|
29 | declare const InputElement: React.FC<IInputElementProps>;
|
30 | export default InputElement;
|
31 |
|
32 | export const InputLeftElement: React.FC<Omit<IInputElementProps, "placement">>;
|
33 | export const InputRightElement: React.FC<Omit<IInputElementProps, "placement">>;
|