export declare class AttachmentField { title: string; value: string; short?: boolean; constructor(title: string, value: string); updateTitle: (cb: (title: string) => string) => void; updateValue: (cb: (value: string) => string) => void; setShort: (value: boolean) => void; }