import { LabelHTMLAttributes, ReactNode } from 'react'; import { IComponentBaseProps } from '../types'; type Position = "left" | "right" | "top"; export declare const LABEL_MAP: Record; export interface LabelProps extends Omit, "label">, IComponentBaseProps { label: ReactNode; alt?: string; helper?: string; error?: string; position?: Position; floating?: boolean; } export {};