import HdgElement from "@hdgd/core"; export interface Props { direction?: "horzontal" | "vertical"; } export interface ItemProps { title: string; status: "done" | "doing" | "todo"; content?: string; order?: string; } declare class HdgStep extends HdgElement { order: string; status: string; title: string; content: string; containerRef: any; setDirection(direction: string): void; render(): any; } export default HdgStep; declare class HdgSteps extends HdgElement { direction: string; slotRef: import("preact").RefObject; handleSlotChange: () => void; render(): any; } export { HdgSteps };