/** * Marks a route or controller as public, bypassing authentication guards. * * Use this decorator on controller methods or entire controllers to indicate * that the route should be accessible without authentication. * * Example: * ```ts * @Public() * @Get('public-endpoint') * getPublicData() { * return 'This is a public route'; * } * ``` */ export declare const IS_PUBLIC_KEY = "isPublic"; export declare const Public: () => import("@nestjs/common").CustomDecorator; //# sourceMappingURL=public.decorator.d.ts.map