type GopherKnownEntry = {
    type: number;
    title: string;
    path: string;
    host: string;
    port: string;
};
type GopherUnknownEntry = {
    type: -1;
    data: string;
};
export declare function gopher_parsedir(dirent: string): GopherKnownEntry | GopherUnknownEntry;
export {};
