import type { Point as MPoint } from 'micromark-util-types';
type Point = Omit<MPoint, '_index' | '_bufferIndex'>;
type Node = {
    type: string;
    children: Array<Node>;
    position?: {
        start?: Point;
        end?: Point;
    };
    value?: string;
};
export declare const fromCSV: (value: any, encoding?: any, options?: any) => Node;
export {};
