import { SkFont } from '@shopify/react-native-skia'; import React from 'react'; export interface YAxisProps { canvasHeight: number; canvasWidth: number; minAmplitude: number; maxAmplitude: number; padding: number; font?: SkFont; tickInterval?: number; tickLength?: number; tickColor?: string; labelColor?: string; labelFontSize?: number; labelFormatter?: (value: number) => string; } export declare const YAxis: React.FC; //# sourceMappingURL=YAxis.d.ts.map