import React from 'react'; import { PayConfig, ConfigBase } from '../../../types/PayConfig'; type FC = React.FC<{ config: T; update: (config: Omit) => void; t: (k: string) => string; }>; export declare function registerPayConfigComponent(channel: string, C: FC): void; export default function Upsert(props: { config?: PayConfig | null; channels: [string, string][]; update: (config: PayConfig) => void; t: (k: string) => string; }): React.JSX.Element; export {};