oak-general-business/lib/components/config/upsert/account/index.d.ts

7 lines
284 B
TypeScript

import { Config } from '../../../../types/Config';
export default function Account(props: {
account: Required<Config>['Account'];
setValue: (path: string, value: any) => void;
removeItem: (path: string, index: number) => void;
}): import("react/jsx-runtime").JSX.Element;