import { WithOptions, IViewBuilder } from './builder'; import { IBuildContext } from './context'; import { RectDisplayObject } from './rect'; export interface ISeparatorOptions { color: string; dash: number | undefined; } export declare class Separator extends WithOptions implements IViewBuilder { readonly width: number | undefined; constructor(width?: number); /** @hidden */ build(ctx?: Partial): RectDisplayObject; }