import { EconomyBan, BanType } from '../database/entities/EconomyBan';
export declare function isUserBanned(guildId: string, userId: string, roleIds: string[]): Promise<boolean>;
export declare function addBan(guildId: string, type: BanType, targetId: string, reason?: string): Promise<boolean>;
export declare function removeBan(guildId: string, type: BanType, targetId: string): Promise<boolean>;
export declare function listBans(guildId: string): Promise<EconomyBan[]>;
export declare function getUserBan(guildId: string, userId: string): Promise<EconomyBan | null>;
//# sourceMappingURL=banService.d.ts.map