import { SvelteComponentTyped } from "svelte"; import type { ITitleDescription } from '../interfaces/ITitleDescription'; declare const __propDef: { props: { data?: ITitleDescription[]; }; events: { [evt: string]: CustomEvent; }; slots: { default: { item: ITitleDescription; index: any; }; }; }; export declare type GridMultipleContentProps = typeof __propDef.props; export declare type GridMultipleContentEvents = typeof __propDef.events; export declare type GridMultipleContentSlots = typeof __propDef.slots; export default class GridMultipleContent extends SvelteComponentTyped { } export {};