import { ReactNode } from "react"; import { type CSS } from "@galacean/editor-ui"; export interface LabelProps { info?: ReactNode; label: string; startSlot?: ReactNode; endSlot?: ReactNode; htmlFor?: string; css?: CSS; } export declare function Label(props: LabelProps): import("react/jsx-runtime").JSX.Element;