import type React from 'react'; import { type ViewProps } from 'react-native'; import type { DimensionsChangeEvent } from '../types/internal'; import type { InternalFlowConfig } from './FlowNativeComponent'; interface FlowProps extends ViewProps { config: InternalFlowConfig; onDimensionsChanged?: (event: DimensionsChangeEvent) => void; } export interface FlowPaperRef { submit: () => void; tokenize: () => void; update: (amount: number, currency?: string) => void; } declare const FlowPaper: React.ForwardRefExoticComponent>; export default FlowPaper; //# sourceMappingURL=FlowPaper.d.ts.map