import React from 'react';
import { FormFieldProps } from './index';
export interface InternalFormFieldProps extends FormFieldProps {
    hideLabel?: boolean;
}
interface FormFieldErrorProps {
    id?: string;
    children?: React.ReactNode;
}
export declare const FormFieldError: ({ id, children }: FormFieldErrorProps) => JSX.Element;
export default function InternalFormField({ controlId, stretch, label, info, children, secondaryControl, description, constraintText, errorText, hideLabel, ...rest }: InternalFormFieldProps): JSX.Element;
export {};
