export declare const simpleSankeyNodes: {
    title: string;
    id: string;
}[];
export declare const simpleSankeyLinks: {
    source: string;
    target: string;
    value: number;
}[];
export declare const sankeyNodes: {
    title: string;
}[];
export declare const sankeyLinks: {
    source: number;
    target: number;
    value: number;
}[];
