import * as React from "react"; export type InputLabelProps = { children?: React.ReactNode; className?: string; shrink?: boolean; } & React.LabelHTMLAttributes; export declare const InputLabel: React.ForwardRefExoticComponent<{ children?: React.ReactNode; className?: string; shrink?: boolean; } & React.LabelHTMLAttributes & React.RefAttributes>;