import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
    props: {
        [x: string]: any;
    };
    events: {
        [evt: string]: CustomEvent<any>;
    };
    slots: {
        default: {
            overflowX: number;
            overflowY: number;
        };
    };
};
export type OverflowProps = typeof __propDef.props;
export type OverflowEvents = typeof __propDef.events;
export type OverflowSlots = typeof __propDef.slots;
export default class Overflow extends SvelteComponentTyped<OverflowProps, OverflowEvents, OverflowSlots> {
}
export {};
