import { Background } from "./background";
import { Structure } from "./structure";
export declare class Pattern {
    background?: Background;
    structure?: Structure;
    width: number;
    height: number;
    toSVG(): string;
    toDataURL(): string;
}
