import { BcfProjectInterface, BcfTopicInterface, BcfCommentInterface, BcfViewpointInterface } from "../models/index"; export interface State { [key: string]: any; bcf: { loggedIn: boolean; token?: string; refreshToken?: string; projects: Array; topics: Array; comments: Array; viewpoints: Array; }; } export declare const initialState: State;