import { SvelteComponentTyped } from "svelte"; import type { DirectoryListProps } from "../types"; declare const __propDef: { props: { urls: DirectoryListProps["urls"]; paginate?: DirectoryListProps["paginate"]; hideViewAction?: DirectoryListProps["hideViewAction"]; handleActionClick: DirectoryListProps["handleActionClick"]; cols?: DirectoryListProps["cols"]; tenant?: DirectoryListProps["tenant"]; product?: DirectoryListProps["product"]; tableProps?: DirectoryListProps["tableProps"]; errorCallback?: DirectoryListProps["errorCallback"]; handleListFetchComplete?: DirectoryListProps["handleListFetchComplete"]; }; 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 {};