import * as React from 'react'; import { StandardProps } from '..'; export interface NotchedOutlineProps extends StandardProps, NotchedOutlineClassKey> { disabled?: boolean; error?: boolean; focused?: boolean; labelWidth: number; notched: boolean; } export type NotchedOutlineClassKey = 'root' | 'legend' | 'focused' | 'error' | 'disabled'; declare const NotchedOutline: React.ComponentType; export default NotchedOutline;