import type { TlsConfig } from '@stacksjs/rpx';

export type { TlsConfig }
export declare interface VitePluginLocalOptions {
  enabled?: boolean

  domain: string

  https?: boolean | TlsConfig

  cleanup?: boolean | {
    hosts?: boolean
    certs?: boolean
  }

  cleanUrls?: boolean

  verbose?: boolean
}