import { SvelteComponent } from "svelte"; import type { TableSortBy } from './types.js'; declare const __propDef: { props: { isActive?: boolean | undefined; sortDirection: TableSortBy; }; events: { sortBy: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export type BaseTableHeaderSortByProps = typeof __propDef.props; export type BaseTableHeaderSortByEvents = typeof __propDef.events; export type BaseTableHeaderSortBySlots = typeof __propDef.slots; export default class BaseTableHeaderSortBy extends SvelteComponent { } export {};