interface AttrProps {
    component: string;
}
interface ParamsProps {
    item: Record<string, any>;
    prevPage: string;
}
interface OnlineTxnFormPage {
    id: string;
    attr: AttrProps;
    params: ParamsProps;
    target: string;
    title: string;
}
declare const OnlineTxnFormPage: (props: Record<string, any>) => import("react/jsx-runtime").JSX.Element;
export default OnlineTxnFormPage;
