import { type ColorInput, type ShapeDef } from '@expofp/renderer';
/**
 * Drawing-side shape types, formerly declared in the retired `data/Data.d.ts`
 * (the event-data types now live on `@expofp/config`; these two are renderer
 * concepts, not data-document fields).
 */
/** A renderer shape with the floorplan painters' background extensions. */
export interface ShapeBgDef extends ShapeDef {
    defaultColor?: ColorInput;
    unblinking?: boolean;
}
/** One highlighted booth path (by SVG `data-index`), as the painters consume it. */
export interface PathInfo {
    index: number;
    color: string;
    unblinking: boolean;
}
//# sourceMappingURL=drawing.types.d.ts.map