export declare const ActionTypeValues: readonly ["postback", "reply"]; export declare type ActionType = typeof ActionTypeValues[number]; export declare type Action = { type: ActionType; payload: string; text?: string; };