import { GestureResponderEvent } from 'react-native';
type Props = {
    closeModal: ((event: GestureResponderEvent) => void) | null | undefined;
    onPressContinue: (frequency: 'Daily' | 'Weekly' | 'Monthly' | 'Save as you collect') => void;
};
declare const Frequency: (props: Props) => import("react/jsx-runtime").JSX.Element;
export default Frequency;
