/// <reference types="google-publisher-tag" />
import { SvelteComponent } from "svelte";
import type { SlotSizeMapping } from '../models/googletag.models';
declare const __propDef: {
    props: {
        [x: string]: any;
        networkCode: string;
        unitCode: string;
        size?: googletag.GeneralSize | undefined;
        sizeMapping?: SlotSizeMapping | undefined;
        containerId?: string | undefined;
        maxHeight?: number | undefined;
        timeout?: number | undefined;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {};
};
export type GptSlotProps = typeof __propDef.props;
export type GptSlotEvents = typeof __propDef.events;
export type GptSlotSlots = typeof __propDef.slots;
export default class GptSlot extends SvelteComponent<GptSlotProps, GptSlotEvents, GptSlotSlots> {
}
export {};
