oak-general-business/es/components/config/upsert/password/index.d.ts

8 lines
290 B
TypeScript

import React from 'react';
import { Config } from '../../../../types/Config';
export default function Password(props: {
password: Required<Config>['Password'];
setValue: (path: string, value: any) => void;
setValues: (value: Record<string, any>) => void;
}): React.JSX.Element;