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