import type { ColumnDef } from '@tanstack/vue-table'; export type FormattedRecipe = { recipe: string; readonly ingredients: string; original: FdoInventoryRecipe; }; export declare function useRecipeTable(): { columnDefs: ColumnDef[]; formatRowData: (recipes: FdoInventoryRecipe[]) => FormattedRecipe[]; };