import { EmbedBuilder } from 'discord.js';
export declare type EmbedPage = EmbedBuilder;
export declare type FunctionPage = () => EmbedPage | Promise<EmbedPage>;
export declare type Page = EmbedPage | FunctionPage;
export interface AutoGeneratePagesOptions {
    items: string[];
    countPerPage?: number;
}
