import type { CSSProperties, LabelHTMLAttributes, ReactNode } from 'react';
import type { ContainerQueryWrapperProps } from './ContainerQueryWrapper.js';
export interface LabelStyle {
label?: CSSProperties;
wrapper?: CSSProperties;
container?: CSSProperties;
}
interface LabelProps extends Omit, 'style'>, Partial {
title: string;
renderTitle?: (title: string, className?: string) => ReactNode;
shortTitle?: string;
children: ReactNode;
className?: string;
style?: LabelStyle;
description?: string;
}
export default function Label(props: LabelProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=Label.d.ts.map