import { DocumentIoType } from "kryo/types/document"; import { FillStyle } from "./fill-style"; import { LineStyle } from "./line-style"; export interface ShapeStyles { fill: FillStyle[]; line: LineStyle[]; } export declare const $ShapeStyles: DocumentIoType;