import { AnyConstructor } from '../../meta';
import { SelectionAny, SelectionSourceCitation } from '../internal';
/**
 * @ignore
 */
export declare const SelectionWithSourceCitationMixin: <C extends AnyConstructor<SelectionAny>>(Base: C) => C & AnyConstructor<SelectionWithSourceCitationMixin>;
export interface SelectionWithSourceCitationMixin {
    getSourceCitation(): SelectionSourceCitation;
}
