///
import * as React from 'react';
import { IFieldRendererProps } from '../FieldCommon/IFieldRendererProps';
/**
* Attachments renderer props
*/
export interface IFieldAttachmentsRendererProps extends IFieldRendererProps {
/**
* amount of attachments
*/
count?: number;
}
/**
* For future
*/
export interface IFieldAttahcmentsRendererState {
}
/**
* Attachments Renderer.
* Used for:
* - Attachments
*/
export default class FieldAttachmentsRenderer extends React.Component {
constructor(props: IFieldAttachmentsRendererProps, state: IFieldAttahcmentsRendererState);
render(): JSX.Element;
}