import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        plateTitle: string;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export declare type PlateProps = typeof __propDef.props;
export declare type PlateEvents = typeof __propDef.events;
export declare type PlateSlots = typeof __propDef.slots;
export default class Plate extends SvelteComponentTyped<PlateProps, PlateEvents, PlateSlots> {
}
export {};
