import React, { PropsWithChildren } from "react"; import { IconsNames } from "../../atoms"; export interface FieldWrapperProps { disabled?: boolean; label?: string | React.ReactNode; caption?: string | React.ReactNode; beforeLabelIcon?: IconsNames; afterLabelIcon?: IconsNames; tip?: string; maxLength?: number; error?: string; className?: string; style?: React.CSSProperties; required?: boolean; size?: "normal" | "small"; } declare const FieldWrapper: ({ tip, beforeLabelIcon, label, maxLength, caption, afterLabelIcon, required, size, style, className, children, disabled, error, }: PropsWithChildren) => JSX.Element; export { FieldWrapper }; //# sourceMappingURL=index.d.ts.map