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