import { SvelteComponentTyped } from "svelte"; import type { ITitleDescription } from "../../interfaces/ITitleDescription"; import type { IButton } from "../../interfaces/IButton"; declare const __propDef: { props: { [x: string]: any; items: ITitleDescription[]; title?: string | undefined; isBody?: boolean | undefined; headerBorder?: boolean | undefined; actions?: IButton[] | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: { item: ITitleDescription; index: any; }; }; }; export declare type LatestNewsProps = typeof __propDef.props; export declare type LatestNewsEvents = typeof __propDef.events; export declare type LatestNewsSlots = typeof __propDef.slots; export default class LatestNews extends SvelteComponentTyped { } export {};