import { BoxProps } from "@stenajs-webui/core"; import * as React from "react"; import { ComponentPropsWithoutRef } from "react"; export interface LabelProps extends BoxProps { text: string; optional?: boolean; maxCharacters?: number; textWidth?: BoxProps["width"]; htmlFor?: ComponentPropsWithoutRef<"label">["htmlFor"]; labelClassName?: string; } export declare const Label: React.FC;