/** * AI CONTEXT: * ┌─────────────────────────────────────────────┐ * │ Component: Label │ * │ htmlFor = string (links to input id) │ * │ required = boolean │ * │ disabled = boolean │ * │ CSS class: .vyre-label │ * └─────────────────────────────────────────────┘ */ import React from "react"; export interface LabelProps extends React.LabelHTMLAttributes { required?: boolean; disabled?: boolean; } export declare const Label: React.ForwardRefExoticComponent>;