import { tl } from '../../../tl/index.js';
import { PartialExcept } from '../../../types/utils.js';
import { ITelegramClient } from '../../client.types.js';
/**
 * Create a folder from given parameters
 *
 * ID for the folder is optional, if not
 * provided it will be derived automatically.
 *
 * @param folder  Parameters for the folder
 * @returns  Newly created folder
 */
export declare function createFolder(client: ITelegramClient, folder: PartialExcept<tl.RawDialogFilter, 'title'>): Promise<tl.RawDialogFilter>;
