import { SvelteComponentTyped } from "svelte";
import type { meaningListItemType } from '../../types';
declare const __propDef: {
    props: {
        list: meaningListItemType[];
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type MeaningsDescriptionProps = typeof __propDef.props;
export type MeaningsDescriptionEvents = typeof __propDef.events;
export type MeaningsDescriptionSlots = typeof __propDef.slots;
export default class MeaningsDescription extends SvelteComponentTyped<MeaningsDescriptionProps, MeaningsDescriptionEvents, MeaningsDescriptionSlots> {
}
export {};
