import { CSSProperties } from "react";
import { InputComponentProps } from "./Input";
import { LabelComponentProps } from "./Label";
interface InputLabelComponentProps {
    inputProps?: InputComponentProps;
    labelProps?: LabelComponentProps;
    children?: React.ReactNode;
    id?: string;
    name: string;
    overwriteLabelStyle?: CSSProperties;
}
export declare const InputLabel: ({ inputProps, labelProps, children, name, id }: InputLabelComponentProps) => JSX.Element;
export {};
