import React from "react";
type InputLabelType = {
    inputLabelClass?: string;
    inputLabelStyle?: React.CSSProperties;
    ariaInputLabel?: string;
    inputLabel?: string;
};
declare function InputLabel(props: InputLabelType): import("react/jsx-runtime").JSX.Element;
export default InputLabel;
