import React from 'react';
import { I_AlertInput, I_PoptartConfig, I_AlertProps } from './types';
interface Props {
    input: I_AlertInput;
    alert: I_AlertProps;
    config: I_PoptartConfig;
    value: string | undefined;
    setValue: React.Dispatch<React.SetStateAction<string | undefined>>;
    onConfirm: () => void;
    error: string | undefined;
    zIndex: number;
}
export default function AlertInput(props: Props): React.JSX.Element;
export {};
