import { CompositionObjectBase } from '../base';
import { FilterType } from '../constants';
export interface FilterParams {
    filter?: FilterType[];
    excludeBotUsers?: boolean;
    excludeExternalSharedChannels?: boolean;
}
export declare class FilterObject extends CompositionObjectBase {
    include?: FilterType[];
    exclude_external_shared_channels?: boolean;
    exclude_bot_users?: boolean;
    constructor(params: FilterParams);
}
