import type { DataSeries } from '@shopify/polaris-viz-core'; import type { MetaDataTrendIndicator } from '../types'; import type { FunnelChartNextProps } from '../FunnelChartNext'; export interface UseBuildFunnelTrendsProps { data: DataSeries[]; percentageFormatter: FunnelChartNextProps['percentageFormatter']; } export declare function useBuildFunnelTrends({ data, percentageFormatter, }: UseBuildFunnelTrendsProps): { trends: MetaDataTrendIndicator; } | undefined; //# sourceMappingURL=useBuildFunnelTrends.d.ts.map