export type PostAction = { id?: string; type?: string; name?: string; disabled?: boolean; style?: string; data_source?: string; options?: PostActionOption[]; default_option?: string; cookie?: string; }; export declare function isPostAction(v: unknown): v is PostAction; export type PostActionOption = { text: string; value: string; }; export type PostActionResponse = { status: string; trigger_id: string; };