import type { Langs, LangsMap, Shorthands, Themes, ThemesMap } from './types.ts'; export interface CreateShorthandsOptions { langs: LangsMap; themes: ThemesMap; defaultLang: NoInfer; defaultTheme: NoInfer; } export declare function createShorthands({ langs, themes, defaultLang, defaultTheme, }: CreateShorthandsOptions): Promise>;