import type { LucidRow } from '@adonisjs/lucid/types/model';
import type { SlugifyStrategyContract } from '../types.js';
/**
 * The SimpleStrategy returns the slug value as it is.
 */
export declare class SimpleStrategy implements SlugifyStrategyContract {
    maxLengthBuffer: number;
    /**
     * Returns the slug as it is
     */
    makeSlugUnique(_: LucidRow, __: string, slug: string): Promise<string>;
}
