import { type L1ReaderConfig } from '@aztec/ethereum'; import { type ConfigMappingsType } from '@aztec/foundation/config'; import { type DataStoreConfig } from '@aztec/kv-store/config'; import { type ChainConfig } from '@aztec/stdlib/config'; import { type BlobSinkConfig as BlobSinkClientConfig } from '../client/config.js'; export type BlobSinkConfig = { port?: number; } & Omit & Partial & Partial & Partial; export declare const blobSinkConfigMappings: ConfigMappingsType; /** * Returns the blob sink configuration from the environment variables. * Note: If an environment variable is not set, the default value is used. * @returns The blob sink configuration. */ export declare function getBlobSinkConfigFromEnv(): BlobSinkConfig; //# sourceMappingURL=config.d.ts.map