import type { FunctionDefinition } from '../../definition_types'; /** * The values representing the y-axis values of a sparkline graph for a given aggregation over a period of time. * * @example * FROM employees * | STATS sparkline = SPARKLINE(COUNT(*), hire_date, 20, "1985-01-01T00:00:00Z", "1985-12-31T00:00:00Z") */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=sparkline.d.ts.map