import { ReactNode } from 'react'; interface Props { currentValue: number; totalValue: number; label: string; onPress: () => void; loading: boolean; children?: ReactNode; } export declare const ProgressValidation: ({ currentValue, totalValue, label, onPress, loading, children, }: Props) => JSX.Element; export {};