import * as React from 'react'; interface IFormFieldLabelProps { children: any, } export const FormFieldLabel = ({ children, ...rest }: IFormFieldLabelProps) => ( );