/** * @slynova/fence * * @license MIT * @copyright Slynova - Romain Lanz */ import { TResource } from '../Contracts'; /** * Returns the name of a resource by using the class name or * the attributs `_className` when it's a dumb object. * * @param resource Resource to search the name for */ export declare function formatResourceName(resource: TResource): string;