import * as React from 'react'; interface IFieldWrapperProps { className?: string; children?: React.ReactNode; width?: number; boxed?: boolean; error?: boolean; } declare const FieldWrapper: import("styled-components").StyledComponent<(props: IFieldWrapperProps) => JSX.Element, import("../../styles/Theme").IThemeInterface, {}, never>; export { FieldWrapper };