import type { ComponentProps, FC, PropsWithChildren } from "react"; import type { KeepStateColors } from "../../Keep/KeepTheme"; export interface keepLavelTheme { base: string; colors: LabelColors; disabled: string; } export interface LabelColors extends KeepStateColors { [key: string]: string; default: string; } export interface LabelProps extends PropsWithChildren, "className" | "color">> { color?: keyof LabelColors; value?: string; disabled?: boolean; htmlFor?: string; } export declare const Label: FC;