import { Catchphrase, CatchphraseConfig, LanguageCode } from "./types";
/**
 * Creates a new catchphrase instance
 * @returns
 */
export declare const createCatchphrase: <L extends LanguageCode>({ languageSelector, }: CatchphraseConfig<L>) => Catchphrase<L>;
