import { InfoResponse } from 'fastapi-rtk/api-types'; import { CoreConvertedInfo } from './types'; /** * Restructures the info object and derives add/edit schemas and default values. * * @param info - The information object to be converted. * @returns The converted info object with additional properties for add and edit operations, or null if the input is falsy. */ export declare const convertInfo: (info: InfoResponse | null | undefined) => CoreConvertedInfo | null;