import type { CustomEmojiResponse, IdResponse } from "./common"; type ListCustomEmojisQueryParameters = { start_cursor?: string; page_size?: number; name?: string; }; export type ListCustomEmojisParameters = ListCustomEmojisQueryParameters; export type ListCustomEmojisResponse = { object: "list"; type: "custom_emoji"; results: Array; has_more: boolean; next_cursor: IdResponse | null; }; /** * List custom emojis */ export declare const listCustomEmojis: { readonly method: "get"; readonly pathParams: readonly []; readonly queryParams: readonly ["start_cursor", "page_size", "name"]; readonly bodyParams: readonly []; readonly path: () => string; }; export {}; //# sourceMappingURL=custom-emojis.d.ts.map