import { Drawable } from '../types'; export declare function subSurface(parent: Drawable, name: string, opts?: Options): HTMLElement; interface Options { prepend?: boolean; title?: string; } export {};