#!/usr/bin/env bun /** * @file cli.ts * @description Command-line interface for the CSP generator */ import type { SecureCSPGeneratorOptions } from './types'; import { type CSPDirective } from './constants'; export declare function parsePresets(value: string | undefined): Partial>; export declare function parseFetchOptions(value: string | undefined): Record; export declare function formatOutput(csp: string, options: SecureCSPGeneratorOptions): string; export declare function getOptions(): SecureCSPGeneratorOptions; export declare function main(): Promise;