import React from 'react'; interface AccessOrganismsType { accessList?: AccessInfo[]; categoryList?: CategoryList[]; simpleComponent?: boolean; } export interface AccessInfo { title: string; description: string; } export interface CategoryList { title: string; items: string[]; } export declare const AccessOrganisms: React.FC; export {};