import React from 'react';
import './Label.scss';
export type labelView = 'mfg-block' | 'mfg-inline';
export interface Props {
    LabelClass?: any;
    LabelId?: any;
    children?: any;
    Labelfor?: any;
    labelView?: labelView;
    style?: React.CSSProperties;
}
declare const Label: ({ LabelClass, LabelId, Labelfor, children, labelView, style }: Props) => import("react/jsx-runtime").JSX.Element;
export default Label;
