import { Exhibitor } from './ExhibitorStore';
import RootStore from './RootStore';
export default class CategoryStore {
    private readonly rootStore;
    readonly categories: Category[];
    get categoryById(): Map<number, Category>;
    get seminarsCategory(): Category | undefined;
    constructor(rootStore: RootStore);
}
export declare class Category {
    private readonly store;
    readonly id: number;
    readonly name: string;
    readonly slug: string;
    readonly sponsorship: boolean;
    readonly exhibitors: Exhibitor[];
    readonly entity: {
        readonly type: 'category';
    };
}
//# sourceMappingURL=CategoryStore.d.ts.map