1 | import * as React from 'react';
|
2 | export interface TextInputGroupProps extends React.HTMLProps<HTMLDivElement> {
|
3 | /** Content rendered inside the text input group */
|
4 | children?: React.ReactNode;
|
5 | /** Additional classes applied to the text input group container */
|
6 | className?: string;
|
7 | /** Adds disabled styling and a disabled context value which text input group main hooks into for the input itself */
|
8 | isDisabled?: boolean;
|
9 | }
|
10 | export declare const TextInputGroupContext: React.Context<Partial<TextInputGroupProps>>;
|
11 | export declare const TextInputGroup: React.FunctionComponent<TextInputGroupProps>;
|
12 | //# sourceMappingURL=TextInputGroup.d.ts.map |
\ | No newline at end of file |