import { SvelteComponentTyped } from "svelte"; import type { ConnectionListProps } from "../types"; declare const __propDef: { props: { urls: ConnectionListProps["urls"]; paginate?: ConnectionListProps["paginate"]; cols?: ConnectionListProps["cols"]; handleActionClick: ConnectionListProps["handleActionClick"]; tenant?: ConnectionListProps["tenant"]; product?: ConnectionListProps["product"]; displaySorted?: ConnectionListProps["displaySorted"]; errorCallback?: ConnectionListProps["errorCallback"]; handleListFetchComplete?: ConnectionListProps["handleListFetchComplete"]; tableProps?: ConnectionListProps["tableProps"]; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type IndexProps = typeof __propDef.props; export type IndexEvents = typeof __propDef.events; export type IndexSlots = typeof __propDef.slots; export default class Index extends SvelteComponentTyped { } export {};