import { FetchedState } from '../../commonStateTypes/common'; export declare const VENDOR_TAB_VIEW_TABS: readonly ["accrued_expenses", "prepaid_expenses", "fixed_assets", "operating_expenses", "vendors_list", "filing_1099"]; export declare const toVendorTabViewTabType: (v: string) => "operating_expenses" | "prepaid_expenses" | "fixed_assets" | "accrued_expenses" | "vendors_list" | "filing_1099"; export type VendorTabViewTabType = ReturnType; export interface VendorTabViewState extends FetchedState { currentTab: VendorTabViewTabType; previousTab?: VendorTabViewTabType; }