import React from 'react'; import type { Label } from '../../services/types.js'; export interface LabelProps { children: React.ReactNode; label: Label; } interface LabelContextValue { label: Label; } export declare function Label(props: LabelProps): import("react/jsx-runtime").JSX.Element; export declare function useLabelContext(): LabelContextValue; export interface LabelNameProps { children: (props: { name: string; }) => React.ReactNode; } export interface LabelIconProps { children: (props: { icon: string | null; hasIcon: boolean; altText: string; }) => React.ReactNode; } export declare function Name(props: LabelNameProps): React.ReactNode; export declare function Icon(props: LabelIconProps): React.ReactNode; export {};