import { SmuleUserIdData, Type, EnsembleType } from './ashi-smule-interfaces';
export interface SmuleFilter {
    owner?: SmuleUserIdData;
    other?: SmuleUserIdData;
    singers?: SmuleUserIdData[];
    performance_key?: string;
    type?: Type;
    title?: string;
    titleExactMatch?: boolean;
    artist?: string;
    artistExactMatch?: boolean;
    ensemble_type?: EnsembleType;
}
