import React from "react"; import { HomePageProps } from "./HomePage.types"; export declare const buildCreationOptions: (themeColors: { primary: string; info: string; success: string; warning: string; secondary: string; }, options?: { isPersonalProfile?: boolean; }) => readonly [{ readonly id: "new-event"; readonly title: "Novo Gira"; readonly description: "Criar evento ou gira"; readonly icon: React.JSX.Element; readonly route: "/events/new"; readonly color: string; }, { readonly id: "new-activity"; readonly title: "Nova Atividade"; readonly description: "Criar atividade"; readonly icon: React.JSX.Element; readonly route: "/activities/new"; readonly color: string; }, { readonly id: "new-medium"; readonly title: "Novo Médium"; readonly description: "Cadastrar médium"; readonly icon: React.JSX.Element; readonly route: "/mediums/new"; readonly color: string; }, { readonly id: "new-inventory"; readonly title: "Novo Item"; readonly description: "Adicionar ao inventário"; readonly icon: React.JSX.Element; readonly route: "/inventory/new"; readonly color: string; }, { readonly id: "new-financial"; readonly title: "Nova Transação"; readonly description: "Registrar movimentação"; readonly icon: React.JSX.Element; readonly route: "/transactions/new"; readonly color: string; }] | readonly [...({ readonly id: "new-activity"; readonly title: "Nova Atividade"; readonly description: "Criar atividade"; readonly icon: React.JSX.Element; readonly route: "/activities/new"; readonly color: string; } | { readonly id: "new-inventory"; readonly title: "Novo Item"; readonly description: "Adicionar ao inventário"; readonly icon: React.JSX.Element; readonly route: "/inventory/new"; readonly color: string; } | { readonly id: "new-financial"; readonly title: "Nova Transação"; readonly description: "Registrar movimentação"; readonly icon: React.JSX.Element; readonly route: "/transactions/new"; readonly color: string; })[], { readonly id: "new-ritual-bath"; readonly title: "Novo Banho&Ritual"; readonly description: "Criar banho ou ritual"; readonly icon: React.JSX.Element; readonly route: "/ritual-baths/new"; readonly color: string; }]; export declare const resolveIsPersonalProfile: (args: { hasTerreiroOptions: boolean; selectedTerreiro: HomePageProps["defaultTerreiro"]; isPersonalProfile?: boolean; }) => boolean; declare const HomePage: React.FunctionComponent; export default HomePage;