import MaterialComponent from '../Base/MaterialComponent'; export interface IFormfieldProps extends JSX.HTMLAttributes { 'align-end'?: boolean; } export interface IFormfieldState { } export declare class Formfield extends MaterialComponent { protected componentName: string; protected mdcProps: string[]; protected materialDom(props: any): JSX.Element; } export default Formfield;