import { State, ActorRefFrom } from 'xstate'; import { ComponentMachine } from '../../component/types'; import { createComponentsMachine } from '../components'; import { ComponentTypes } from '../types'; export type ComponentsMachine = ReturnType; export type ComponentsState = State; type CategorizedComponents = Record; }[]>; export declare const getComponentsUsedInBilling: (machineState: ComponentsState) => CategorizedComponents; export {};