import * as React from 'react'; import { InternalStandardProps as StandardProps } from "../internal/index.js"; export interface NotchedOutlineProps extends StandardProps> { disabled?: boolean | undefined; error?: boolean | undefined; focused?: boolean | undefined; label?: React.ReactNode; notched: boolean; } export type NotchedOutlineClassKey = keyof NonNullable; declare const NotchedOutline: React.JSXElementConstructor; export default NotchedOutline;