import React from 'react'; import { ExternalStyles, Theme } from '../../styles'; import { Omit } from '../../util'; export interface FormErrorProps extends Omit, 'style'> { style?: ExternalStyles; } export declare function FormError(props: FormErrorProps): JSX.Element; export declare const createStyles: (theme: Theme) => { wrapper: { display: string; alignItems: string; color: string; }; icon: { marginLeft: string; }; };