declare const AppDateTimePicker: (props: {
    containerStyle?: any;
    inputStyle?: any;
    value: any;
    label: any;
    errorMsg: any;
    placeholder: any;
    prependComponent?: any;
    appendComponent?: any;
    show: boolean;
    mode: 'date' | 'time' | 'datetime' | 'countdown';
    onPress: () => void;
    onCancel: () => void;
    onChange: (date: any) => void;
    minimumDate?: Date;
    maximumDate?: Date;
    showAsterisk?: boolean;
}) => import("react/jsx-runtime").JSX.Element;
export default AppDateTimePicker;
