import { SvelteComponentTyped } from "svelte";
import Zdog from 'zdog';
declare const __propDef: {
    props: {
        node?: Zdog.Shape | undefined;
        radius?: number | undefined;
        sides?: number | undefined;
        color?: string | undefined;
        stroke?: number | false | undefined;
        fill?: boolean | undefined;
        closed?: boolean | undefined;
        visible?: boolean | undefined;
        backface?: string | boolean | undefined;
        front?: Zdog.VectorOptions | undefined;
        path?: readonly Zdog.PathCommand[] | undefined;
        addTo?: Zdog.Anchor | undefined;
        translate?: Zdog.VectorOptions | undefined;
        rotate?: Zdog.VectorOptions | undefined;
        scale?: number | Zdog.VectorOptions | undefined;
        update?: import("../types").Subscriber<Zdog.Shape> | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type ShapeProps = typeof __propDef.props;
export type ShapeEvents = typeof __propDef.events;
export type ShapeSlots = typeof __propDef.slots;
export default class Shape extends SvelteComponentTyped<ShapeProps, ShapeEvents, ShapeSlots> {
    get node(): Zdog.Shape;
}
export {};
