/** * @description This interface defines the structure for the application's configuration. * It ensures that all parts of the application that use this configuration * will have a consistent shape. */ interface AppConfig { abhaPublicKey: string; encryptionPublicKey: string; apiUrl: string; } /** * @description This configuration object holds the application's secrets. * The placeholder values will be replaced by the GitHub Actions workflow. */ declare const config: AppConfig; export default config;