export interface IDocumentQuery {
    followedSites?: Array<{
        title: string;
        siteUrl: string;
    }>;
    excludeFileTypes?: Array<string>;
    addonQueryTemplate?: string;
    alternateTitlePropertyName?: string;
    alternateModifiedByPropertyName?: string;
}
