1 | import * as React from 'react';
|
2 | import { InternalStandardProps as StandardProps } from '..';
|
3 |
|
4 | export interface NotchedOutlineProps
|
5 | extends StandardProps<React.FieldsetHTMLAttributes<HTMLFieldSetElement>> {
|
6 | disabled?: boolean;
|
7 | error?: boolean;
|
8 | focused?: boolean;
|
9 | label?: React.ReactNode;
|
10 | notched: boolean;
|
11 | }
|
12 |
|
13 | export type NotchedOutlineClassKey = keyof NonNullable<NotchedOutlineProps['classes']>;
|
14 |
|
15 | declare const NotchedOutline: React.JSXElementConstructor<NotchedOutlineProps>;
|
16 |
|
17 | export default NotchedOutline;
|