import type { TerreiroSectionCardProps } from "./TerreiroSectionCard.types"; declare const useTerreiroSectionCard: (props: TerreiroSectionCardProps) => { data: { name: string; documentType: string; document: string; foundationDate: string; biography: string; religionInfo: string; imageUrl: string | null; status: "ACTIVE" | "INACTIVE"; }; fns: {}; }; export default useTerreiroSectionCard;