import './FieldWrapper.scss';
import type { FieldContainerProps } from './types';
/**
 * USAGE: Specifically defined as a util to provide a wrapper for fields created within the Address component
 *
 * NOT TO BE USED: if you just want to add a Country or State dropdown outside of an Address component
 * - then you should implement <CountryField> or <StateField> directly
 */
export declare function FieldContainer(props: FieldContainerProps): import("preact").JSX.Element;
