import { SvelteComponent } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
        caption: string;
        width?: string | undefined;
        style?: string | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type DisplayProps = typeof __propDef.props;
export type DisplayEvents = typeof __propDef.events;
export type DisplaySlots = typeof __propDef.slots;
/**
 * A layout component to add a caption to your content.
 *
 * [See Docs](https://geist-ui-svelte.dev/components/display) | [Open Issue](https://github.com/ieedan/geist-ui-svelte/issues/new)
 */
export default class Display extends SvelteComponent<DisplayProps, DisplayEvents, DisplaySlots> {
}
export {};
