import { type PropType } from "vue"; export type KanbanBoardCard = { id: string; title: string; subtitle?: string; owner?: string; badgeLabel?: string; badgeTone?: string; }; export type KanbanBoardColumn = { label: string; cards: KanbanBoardCard[]; }; export type KanbanBoardProps = { columns: KanbanBoardColumn[]; class?: string; }; export declare const KanbanBoard: import("vue").DefineComponent; required: true; }; class: { type: StringConstructor; default: undefined; }; }>, () => import("vue").VNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly; required: true; }; class: { type: StringConstructor; default: undefined; }; }>> & Readonly<{}>, { class: string; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; //# sourceMappingURL=KanbanBoard.d.ts.map