export interface ArchyNode { label: string; nodes?: Array; } export interface ArchyOptions { unicode?: boolean; } declare function archy(obj: ArchyNode | string, prefix?: string, opts?: ArchyOptions): string; export default archy;