import { type PropType } from "vue"; export type ListReportPageNavItem = { label: string; href: string; active?: boolean; }; export type ListReportPageColumn = { key: string; label: string; }; export type ListReportPageRow = { id: string; [key: string]: unknown; }; export type ListReportPageAction = { id: string; label: string; }; export type ListReportPageFilter = { field: string; operator: string; value: string; }; export type ListReportPageProps = { appTitle?: string; navItems?: ListReportPageNavItem[]; pageTitle: string; primaryAction?: string; secondaryAction?: string; searchPlaceholder?: string; columns: ListReportPageColumn[]; rows?: ListReportPageRow[]; rowActions?: ListReportPageAction[]; onprimaryaction?: () => void; onsearch?: (q: string) => void; class?: string; }; export declare const ListReportPage: import("vue").DefineComponent; default: () => never[]; }; pageTitle: { type: StringConstructor; required: true; }; primaryAction: { type: StringConstructor; default: undefined; }; secondaryAction: { type: StringConstructor; default: undefined; }; searchPlaceholder: { type: StringConstructor; default: string; }; columns: { type: PropType; required: true; }; rows: { type: PropType; default: () => never[]; }; rowActions: { type: PropType; default: () => never[]; }; onprimaryaction: { type: PropType<() => void>; default: undefined; }; onsearch: { type: PropType<(q: string) => void>; default: undefined; }; class: { type: StringConstructor; default: undefined; }; }>, () => import("vue").VNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly; default: () => never[]; }; pageTitle: { type: StringConstructor; required: true; }; primaryAction: { type: StringConstructor; default: undefined; }; secondaryAction: { type: StringConstructor; default: undefined; }; searchPlaceholder: { type: StringConstructor; default: string; }; columns: { type: PropType; required: true; }; rows: { type: PropType; default: () => never[]; }; rowActions: { type: PropType; default: () => never[]; }; onprimaryaction: { type: PropType<() => void>; default: undefined; }; onsearch: { type: PropType<(q: string) => void>; default: undefined; }; class: { type: StringConstructor; default: undefined; }; }>> & Readonly<{}>, { class: string; navItems: ListReportPageNavItem[]; appTitle: string; rows: ListReportPageRow[]; primaryAction: string; secondaryAction: string; searchPlaceholder: string; rowActions: ListReportPageAction[]; onprimaryaction: () => void; onsearch: (q: string) => void; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; //# sourceMappingURL=ListReportPage.d.ts.map