import { controllerResponse } from '../types';
/**
 * Function to retrieve a single table schema by its filename.
 * @param {string} fileName - The name of the schema file.
 * @returns {controllerResponse} Returns success and message containing the schema if successful; otherwise, returns an error message.
 */
declare function getSingleSchema(fileName: string): controllerResponse;
export { getSingleSchema };
