import type { StacksOptions } from '@stacksjs/types'; /** * Framework-wide default scalars. Defining these as named constants * (rather than re-spelling the literal in each config section) keeps * "where do I change the default region?" answerable from a single * line — the previous shape had `'us-east-1'` typed in 4+ places that * could drift when a multi-region future lands. */ export declare const FRAMEWORK_DEFAULTS: { /** Default AWS region for SES, S3, DynamoDB, CloudFront origin shield. */ awsRegion: 'us-east-1'; /** Default scheduler / job timezone. UTC keeps cron predictable across hosts. */ timezone: 'UTC'; /** No-reply address for transactional email (override via config.email.from). */ noReplyEmail: 'no-reply@stacksjs.com'; /** Default project domain shape for new scaffolds. */ fallbackDomain: 'stacks.localhost' }; export declare const defaults: StacksOptions; export default defaults;