import { ChzzkClient } from "../client";
import { ChatExtras } from "../chat";
export interface NoticeOptions {
    extras: string | ChatExtras;
    message: string;
    messageTime: number;
    messageUserIdHash: string;
    streamingChannelId: string;
}
export interface BlindOptions {
    message: string;
    messageTime: number;
    messageUserIdHash: string;
    streamingChannelId: string;
}
export declare function accessToken(client: ChzzkClient, chatChannelId: string): Promise<any>;
export declare function profileCard(client: ChzzkClient, chatChannelId: string, userIdHash: string): Promise<any>;
export declare function notice(client: ChzzkClient, chatChannelId: string, options?: NoticeOptions): Promise<Response>;
export declare function blind(client: ChzzkClient, chatChannelId: string, options: BlindOptions): Promise<Response>;
