export interface SlugOptions { min?: number; max?: number; exactly?: number; } export default function slug(opts?: SlugOptions): string;