import { StylesApiProps, type Factory, type TooltipProps } from '@mantine/core';
import { type ReactNode } from 'react';
export type InputLabelInfoStylesNames = 'labelInfo';
export interface InputLabelInfoProps extends Omit<TooltipProps, 'label' | 'classNames' | 'attributes' | 'styles' | 'vars'>, StylesApiProps<InputLabelInfoFactory> {
    children: ReactNode;
}
export type InputLabelInfoFactory = Factory<{
    props: InputLabelInfoProps;
    ref: HTMLSpanElement;
    stylesNames: InputLabelInfoStylesNames;
}>;
export declare const InputLabelInfo: import("@mantine/core").MantineComponent<{
    props: InputLabelInfoProps;
    ref: HTMLSpanElement;
    stylesNames: InputLabelInfoStylesNames;
}>;
//# sourceMappingURL=InputLabelInfo.d.ts.map