import type { ActionIconGroupItemType } from "../../../ActionIconGroup";
interface ChatListActionsBar {
    copy: ActionIconGroupItemType;
    del: ActionIconGroupItemType;
    divider: {
        type: 'divider';
    };
    edit: ActionIconGroupItemType;
    regenerate: ActionIconGroupItemType;
}
export declare const useChatListActionsBar: (text?: {
    copy?: string;
    delete?: string;
    edit?: string;
    regenerate?: string;
}) => ChatListActionsBar;
export {};
