import Vide from "@rbxts/vide" type can = T | (() => T) interface LinegraphProps { position?: can, size?: can, anchorpoint?: can, values: () => number[], max?: can, min?: can, } declare function linegraph(props: LinegraphProps): Vide.Node export = linegraph