import * as React from 'react';
export interface NotchedOutlineProps {
    className?: string;
    label: React.ReactNode;
    active?: boolean;
    disabled?: boolean;
    children?: React.ReactNode;
    style?: React.CSSProperties;
}
export declare const NotchedOutline: React.FC<NotchedOutlineProps>;
