/** * Dummy function to get form metadata. * @param {string} _slug - the slug of the form * @returns {Promise} */ export function getFormMetadata(_slug: string): Promise; /** * Dummy function to get form metadata. * @param {string} _id - the id of the form * @returns {Promise} */ export function getFormMetadataById(_id: string): Promise; /** * Dummy function to get form metadata. * @param {string} _id - the id of the form * @param {FormStatus} _state - the state of the form * @returns {Promise} */ export function getFormDefinition(_id: string, _state: FormStatus): Promise; /** * Dummy function to get a form secret. * @param {string} _id - the id of the form * @param {string} _secretName - the name of the secret * @returns {Promise} */ export function getFormSecret(_id: string, _secretName: string): Promise; import type { FormMetadata } from '@defra/forms-model'; import type { FormStatus } from '@defra/forms-model'; import type { FormDefinition } from '@defra/forms-model';