/** * Decorator to mark a route as public (no authentication required). * * @example * ```typescript * @Controller('health') * export class HealthController { * @Get() * @Public() * check() { * return { status: 'ok' }; * } * } * ``` */ export declare const Public: () => import("@nestjs/common").CustomDecorator; //# sourceMappingURL=public.decorator.d.ts.map