/** @typedef {typeof __propDef.props} TuiGridRowProps */ /** @typedef {typeof __propDef.events} TuiGridRowEvents */ /** @typedef {typeof __propDef.slots} TuiGridRowSlots */ export default class TuiGridRow extends SvelteComponent<{ [x: string]: never; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type TuiGridRowProps = typeof __propDef.props; export type TuiGridRowEvents = typeof __propDef.events; export type TuiGridRowSlots = typeof __propDef.slots; import { SvelteComponent } from "svelte"; declare const __propDef: { props: { [x: string]: never; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};