import React from 'react'; export declare const BuildingTypeEnum: readonly ["Townhouses", "<4 Storey MURB", "4+ Storey MURB", "Stacked Townhouses", "Detached", "Semi Detached"]; interface FieldRendererProps { property: string; value: any; handleInputChange: (property: string, value: any) => void; isTextAreaField: (property: string) => boolean; isFileField: (property: string) => boolean; isDateField?: (property: string) => boolean; isEnumField?: (property: string) => boolean; isNumberField?: (property: string) => boolean; isFullWidthField?: (property: string) => boolean; getEnumType?: (property: string) => string | null; buildingId?: number; setActiveChanges?: (editing: boolean) => void; } declare const FieldRenderer: ({ property, value, handleInputChange, isTextAreaField, isFileField, isDateField, isEnumField, isNumberField, isFullWidthField, getEnumType, buildingId, setActiveChanges, }: FieldRendererProps) => React.JSX.Element; export default FieldRenderer; //# sourceMappingURL=FieldRenderer.d.ts.map