import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        device?: "default" | "ios" | "android" | "tablet" | "laptop" | "desktop" | "smartwatch";
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {};
    };
};
export type DeviceMockupProps = typeof __propDef.props;
export type DeviceMockupEvents = typeof __propDef.events;
export type DeviceMockupSlots = typeof __propDef.slots;
/**
 * [Go to docs](https://flowbite-svelte.com/)
 * ## Props
 * @prop export let device: NonNullable<$$Props['device']> = 'default';
 */
export default class DeviceMockup extends SvelteComponentTyped<DeviceMockupProps, DeviceMockupEvents, DeviceMockupSlots> {
}
export {};
