import { Coord2DType } from '../data-type';
/**
 * @interface IMiniMap
 * @param {string | null} eid (optional)
 * @param {sytring} type (optional)
 * @param {ISource} source (optional)
 * @param {Array<Array<number>>} mappingAnchors (optional)
 * @param {IDisplay} display (optional)
 */
export interface IMiniMap {
    eid?: string | null;
    type?: string;
    source?: ISource;
    mappingAnchors?: Array<Array<number>>;
    display?: IDisplay;
}
/**
 * @interface ISource
 * @param {string} bg (optional)
 * @param {string} needle (optional)
 * @param {string} mask (optional)
 * @param {string} frame (optional)
 */
interface ISource {
    bg?: string;
    needle?: string;
    mask?: string;
    frame?: string;
}
/**
 * @interface IDisplay
 * @param {Coord2DType} position (optional)
 * @param {number} size (optional)
 */
interface IDisplay {
    position?: Coord2DType;
    size?: number;
    anchors?: string;
}
export {};
