/** * Common Selectors * * Shared selectors used across multiple components: * - Permission denied * - Loading states * - Error messages * - Toasts * - Modals */ export declare const COMMON_SELECTORS: { readonly permissionDenied: "permission-denied"; readonly loading: "loading-spinner"; readonly error: "error-message"; readonly toast: "toast-{type}"; readonly modal: { readonly overlay: "modal-overlay"; readonly container: "modal-container"; readonly title: "modal-title"; readonly close: "modal-close"; readonly content: "modal-content"; readonly footer: "modal-footer"; }; readonly aiChat: { readonly messageInput: "ai-chat-message-input"; readonly sendBtn: "ai-chat-send-btn"; readonly messageList: "ai-chat-message-list"; readonly errorMessage: "ai-chat-error-message"; readonly messageUser: "ai-chat-message-user"; readonly messageAssistant: "ai-chat-message-assistant"; readonly typingIndicator: "ai-chat-typing-indicator"; readonly panel: "ai-chat-panel"; readonly clearBtn: "ai-chat-clear-btn"; readonly cancelBtn: "ai-chat-cancel-btn"; }; }; export type CommonSelectorsType = typeof COMMON_SELECTORS; //# sourceMappingURL=common.selectors.d.ts.map